diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-10-18 15:12:44 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-10-21 12:49:16 +0200 |
commit | e97f06800ecff47e0c5da1aea89f18090389dc42 (patch) | |
tree | f49f7694b6b93b1bdbad25a90defa5212c4891b6 /components/script/script_thread.rs | |
parent | bb271ef4afea02b6b1b5d207e773d1fedccd2906 (diff) | |
download | servo-e97f06800ecff47e0c5da1aea89f18090389dc42.tar.gz servo-e97f06800ecff47e0c5da1aea89f18090389dc42.zip |
Move LoadData to script_traits.
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 6c05e9bfd88..0faa6dbb56c 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -71,7 +71,7 @@ use js::jsval::UndefinedValue; use js::rust::Runtime; use layout_wrapper::ServoLayoutNode; use mem::heap_size_of_self_and_children; -use msg::constellation_msg::{FrameType, LoadData, PipelineId, PipelineNamespace}; +use msg::constellation_msg::{FrameType, PipelineId, PipelineNamespace}; use msg::constellation_msg::{ReferrerPolicy, WindowSizeType}; use net_traits::{AsyncResponseTarget, CoreResourceMsg, LoadConsumer, LoadContext, Metadata, ResourceThreads}; use net_traits::{IpcSend, LoadData as NetLoadData}; @@ -84,7 +84,7 @@ use script_layout_interface::message::{self, NewLayoutThreadInfo, ReflowQueryTyp use script_runtime::{CommonScriptMsg, ScriptChan, ScriptThreadEventCategory, EnqueuedPromiseCallback}; use script_runtime::{ScriptPort, StackRootTLS, get_reports, new_rt_and_cx, PromiseJobQueue}; use script_traits::{CompositorEvent, ConstellationControlMsg, EventResult}; -use script_traits::{InitialScriptState, MouseButton, MouseEventType, MozBrowserEvent}; +use script_traits::{InitialScriptState, LoadData, MouseButton, MouseEventType, MozBrowserEvent}; use script_traits::{NewLayoutInfo, ScriptMsg as ConstellationMsg}; use script_traits::{ScriptThreadFactory, TimerEvent, TimerEventRequest, TimerSource}; use script_traits::{TouchEventType, TouchId, UntrustedNodeAddress, WindowSizeData}; |