diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-04 11:27:44 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-04 11:59:21 +0100 |
commit | de0caf8761459e8d51a8250a12babb7e80b24649 (patch) | |
tree | af8d2ce0a4c0904ac4376ed49d615e04e00aa485 /components/script/dom/htmliframeelement.rs | |
parent | d5cc791d3109c67f3086ed282011b8ff6299cca3 (diff) | |
download | servo-de0caf8761459e8d51a8250a12babb7e80b24649.tar.gz servo-de0caf8761459e8d51a8250a12babb7e80b24649.zip |
Rename constellation_msg::Msg variants.
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index bc2c6a6b73b..b36b2a664ec 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -21,9 +21,9 @@ use dom::virtualmethods::VirtualMethods; use dom::window::Window; use page::IterablePage; -use servo_msg::constellation_msg::{PipelineId, SubpageId}; -use servo_msg::constellation_msg::{IFrameSandboxed, IFrameUnsandboxed}; -use servo_msg::constellation_msg::{ConstellationChan, ScriptLoadedURLInIFrameMsg}; +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 servo_util::str::DOMString; use std::ascii::AsciiExt; @@ -122,7 +122,7 @@ impl<'a> HTMLIFrameElementHelpers for JSRef<'a, HTMLIFrameElement> { })); let ConstellationChan(ref chan) = page.constellation_chan; - chan.send(ScriptLoadedURLInIFrameMsg(url, page.id, subpage_id, sandboxed)); + chan.send(ConstellationMsg::ScriptLoadedURLInIFrame(url, page.id, subpage_id, sandboxed)); } } |