diff options
author | apopiak <alexander.popiak@gmail.com> | 2016-01-11 23:20:10 +0100 |
---|---|---|
committer | apopiak <alexander.popiak@gmail.com> | 2016-01-13 17:48:50 +0100 |
commit | 4b773cefe9ffdecd04993e4652fb2e436bf57e08 (patch) | |
tree | c7d396a4d1b7737707abe7f841eb973d98a0a35f /components/script/dom/htmliframeelement.rs | |
parent | 0e6bca8e8efce40f99aca24475d5ba1dac317e2c (diff) | |
download | servo-4b773cefe9ffdecd04993e4652fb2e436bf57e08.tar.gz servo-4b773cefe9ffdecd04993e4652fb2e436bf57e08.zip |
move MozBrowserEvent to script_traits (+ documentation)
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 4d496903629..65cfd32fa17 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -26,12 +26,11 @@ use dom::virtualmethods::VirtualMethods; use dom::window::Window; use js::jsapi::{JSAutoCompartment, JSAutoRequest, RootedValue, JSContext, MutableHandleValue}; use js::jsval::{UndefinedValue, NullValue}; -use msg::constellation_msg::{ConstellationChan, MozBrowserEvent}; +use msg::constellation_msg::{ConstellationChan}; use msg::constellation_msg::{NavigationDirection, PipelineId, SubpageId}; use page::IterablePage; -use script_traits::IFrameLoadInfo; use script_traits::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; -use script_traits::ScriptMsg as ConstellationMsg; +use script_traits::{IFrameLoadInfo, MozBrowserEvent, ScriptMsg as ConstellationMsg}; use std::ascii::AsciiExt; use std::cell::Cell; use string_cache::Atom; |