diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-02-10 11:40:36 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-02-10 11:40:36 +0100 |
commit | b2fcc2397e08d9daa4454ea942685e02dc73b000 (patch) | |
tree | 0acb53d9cf80f5d534b9903b395f45feb0baab53 /components/script/dom/htmliframeelement.rs | |
parent | d1c8ed4359c47cd047e5ca3edfa37e8692058644 (diff) | |
download | servo-b2fcc2397e08d9daa4454ea942685e02dc73b000.tar.gz servo-b2fcc2397e08d9daa4454ea942685e02dc73b000.zip |
Import msg as msg rather than servo_msg.
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index bb310607b1b..b4f9b577b7b 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -23,9 +23,9 @@ use dom::virtualmethods::VirtualMethods; use dom::window::Window; use page::{IterablePage, Page}; -use servo_msg::constellation_msg::{PipelineId, SubpageId, ConstellationChan}; -use servo_msg::constellation_msg::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; -use servo_msg::constellation_msg::Msg as ConstellationMsg; +use msg::constellation_msg::{PipelineId, SubpageId, ConstellationChan}; +use msg::constellation_msg::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; +use msg::constellation_msg::Msg as ConstellationMsg; use util::str::DOMString; use string_cache::Atom; |