diff options
author | Tomas Cernaj <tomas@cernaj.de> | 2015-12-09 20:50:11 +0100 |
---|---|---|
committer | Tomas Cernaj <tomas@cernaj.de> | 2015-12-09 20:50:11 +0100 |
commit | 5507be2653d085245b8bf33be976653ab2378751 (patch) | |
tree | 3d069fd126da21dfb4f7ab0455ff768254ed0a2f /components/script/dom/htmliframeelement.rs | |
parent | 8ba470d79fadf8787eb139af9047b0b4a10fe25c (diff) | |
download | servo-5507be2653d085245b8bf33be976653ab2378751.tar.gz servo-5507be2653d085245b8bf33be976653ab2378751.zip |
Move ScriptMsg from msg crate into script_traits
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 3798ab4f539..7039340ead2 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -25,10 +25,10 @@ use dom::window::Window; use js::jsapi::{JSAutoCompartment, JSAutoRequest, RootedValue, JSContext, MutableHandleValue}; use js::jsval::{UndefinedValue, NullValue}; use msg::constellation_msg::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; -use msg::constellation_msg::ScriptMsg as ConstellationMsg; use msg::constellation_msg::{ConstellationChan, IframeLoadInfo, MozBrowserEvent}; use msg::constellation_msg::{NavigationDirection, PipelineId, SubpageId}; use page::IterablePage; +use script_traits::ScriptMsg as ConstellationMsg; use std::ascii::AsciiExt; use std::cell::Cell; use string_cache::Atom; |