diff options
author | Martin Robinson <mrobinson@igalia.com> | 2014-11-05 16:50:13 -0800 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2014-11-11 17:36:18 -0800 |
commit | 6e06a1353c16c285610ff4bf44380c9a9d9ab76f (patch) | |
tree | cc052d224ef32cff957b5cefb3d1d8849f4b6919 /components/script/dom/htmliframeelement.rs | |
parent | f4471f06029ac03aa2ee26aa4398daaab9c6a371 (diff) | |
download | servo-6e06a1353c16c285610ff4bf44380c9a9d9ab76f.tar.gz servo-6e06a1353c16c285610ff4bf44380c9a9d9ab76f.zip |
Rename LoadIframeUrlMsg to CreateIFrameAndLoadUrlMsg
This better reflects what the message does.
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 737f3340ecf..902ee4ee6ea 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -23,7 +23,7 @@ use page::IterablePage; use servo_msg::constellation_msg::{PipelineId, SubpageId}; use servo_msg::constellation_msg::{IFrameSandboxed, IFrameUnsandboxed}; -use servo_msg::constellation_msg::{ConstellationChan, LoadIframeUrlMsg}; +use servo_msg::constellation_msg::{ConstellationChan, ScriptLoadedURLInIFrameMsg}; use servo_util::str::DOMString; use std::ascii::StrAsciiExt; @@ -125,7 +125,7 @@ impl<'a> HTMLIFrameElementHelpers for JSRef<'a, HTMLIFrameElement> { // https://github.com/servo/servo/issues/3738 // We can't handle dynamic frame tree changes in the compositor right now. let ConstellationChan(ref chan) = page.constellation_chan; - chan.send(LoadIframeUrlMsg(url, page.id, subpage_id, sandboxed)); + chan.send(ScriptLoadedURLInIFrameMsg(url, page.id, subpage_id, sandboxed)); } } } |