diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-04 12:39:47 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-04 12:39:47 -0700 |
commit | ba8cf6b0e6145265f9472d4855f078d8b5943fe7 (patch) | |
tree | 4ce7adac90149382d40392c2019c17aa7af76d35 /components/script/dom/htmliframeelement.rs | |
parent | 2e17cae5d080db72d5f89733d19e0304857cfd34 (diff) | |
parent | 79d052797823a7c26772bda84b8afeff92825306 (diff) | |
download | servo-ba8cf6b0e6145265f9472d4855f078d8b5943fe7.tar.gz servo-ba8cf6b0e6145265f9472d4855f078d8b5943fe7.zip |
auto merge of #4542 : servo/servo/pre-rustup_20141221, r=saneyuki
In particular, this contains changes to qualify enums where rust will require it, and to stop using some features that will be removed.
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 0069e2e51e0..ab50117b776 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -22,9 +22,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; @@ -123,7 +123,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)); } } |