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/script_thread.rs | |
parent | 0e6bca8e8efce40f99aca24475d5ba1dac317e2c (diff) | |
download | servo-4b773cefe9ffdecd04993e4652fb2e436bf57e08.tar.gz servo-4b773cefe9ffdecd04993e4652fb2e436bf57e08.zip |
move MozBrowserEvent to script_traits (+ documentation)
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 3e397f2b5f9..1b42f35d716 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -64,7 +64,7 @@ use layout_interface::{self, LayoutChan, NewLayoutThreadInfo, ScriptLayoutChan}; use libc; use mem::heap_size_of_self_and_children; use msg::constellation_msg::{ConstellationChan, LoadData}; -use msg::constellation_msg::{MouseButton, MozBrowserEvent, PipelineId}; +use msg::constellation_msg::{MouseButton, PipelineId}; use msg::constellation_msg::{PipelineNamespace}; use msg::constellation_msg::{SubpageId, WindowSizeData}; use msg::webdriver_msg::WebDriverScriptCommand; @@ -81,7 +81,7 @@ use profile_traits::time::{self, ProfilerCategory, profile}; use script_traits::CompositorEvent::{KeyEvent, MouseButtonEvent, MouseMoveEvent, ResizeEvent}; use script_traits::CompositorEvent::{TouchEvent}; use script_traits::{CompositorEvent, ConstellationControlMsg, EventResult}; -use script_traits::{InitialScriptState, MouseEventType, NewLayoutInfo}; +use script_traits::{InitialScriptState, MouseEventType, MozBrowserEvent, NewLayoutInfo}; use script_traits::{LayoutMsg, OpaqueScriptLayoutChannel, ScriptMsg as ConstellationMsg}; use script_traits::{ScriptThreadFactory, ScriptToCompositorMsg, TimerEvent, TimerEventRequest, TimerSource}; use script_traits::{TouchEventType, TouchId}; |