diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-17 16:41:54 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-18 02:47:04 +0200 |
commit | 46628fba05a548c1c2141d7c709b6e5d812f3114 (patch) | |
tree | d4259a3a2b0255227111c1ad1e28aeec37c43a45 /components/script/dom/htmliframeelement.rs | |
parent | 8e78f18d2d282e651c5a8a20b2fe28cb015b264a (diff) | |
download | servo-46628fba05a548c1c2141d7c709b6e5d812f3114.tar.gz servo-46628fba05a548c1c2141d7c709b6e5d812f3114.zip |
Move Task to its own module
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index fa6639ad422..0452c40d2f9 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -43,7 +43,7 @@ use js::jsval::{NullValue, UndefinedValue}; use msg::constellation_msg::{FrameType, BrowsingContextId, PipelineId, TopLevelBrowsingContextId, TraversalDirection}; use net_traits::response::HttpsState; use script_layout_interface::message::ReflowQueryType; -use script_thread::{ScriptThread, Task}; +use script_thread::ScriptThread; use script_traits::{IFrameLoadInfo, IFrameLoadInfoWithData, JsEvalResult, LoadData, UpdatePipelineIdReason}; use script_traits::{MozBrowserEvent, NewLayoutInfo, ScriptMsg}; use script_traits::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; @@ -54,6 +54,7 @@ use servo_url::ServoUrl; use std::cell::Cell; use style::attr::{AttrValue, LengthOrPercentageOrAuto}; use style::context::ReflowGoal; +use task::Task; use task_source::TaskSource; bitflags! { |