diff options
author | Florian Strübe <f.struebe@yatego.com> | 2015-12-06 23:32:45 +0100 |
---|---|---|
committer | Florian Strübe <f.struebe@yatego.com> | 2015-12-07 20:11:26 +0100 |
commit | b81f712ce1d4029b11819b7d87d0ab6c0a67f041 (patch) | |
tree | cbc44a69cd0074a0eb1265e6a49577cc22ffadf1 /components/script/dom/window.rs | |
parent | 95e6b1d101ca1a1019b8fea1a13a5ef37430901f (diff) | |
download | servo-b81f712ce1d4029b11819b7d87d0ab6c0a67f041.tar.gz servo-b81f712ce1d4029b11819b7d87d0ab6c0a67f041.zip |
Moved WorkerId type to devtools_traits
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index f8af9be77b5..80223207e93 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; -use devtools_traits::{ScriptToDevtoolsControlMsg, TimelineMarker, TimelineMarkerType}; +use devtools_traits::{ScriptToDevtoolsControlMsg, TimelineMarker, TimelineMarkerType, WorkerId}; use dom::bindings::callback::ExceptionHandling; use dom::bindings::cell::DOMRefCell; use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods; @@ -44,7 +44,7 @@ use layout_interface::{LayoutChan, LayoutRPC, Msg, Reflow, ReflowGoal, ReflowQue use libc; use msg::compositor_msg::{LayerId, ScriptToCompositorMsg}; use msg::constellation_msg::ScriptMsg as ConstellationMsg; -use msg::constellation_msg::{ConstellationChan, LoadData, PipelineId, SubpageId, WindowSizeData, WorkerId}; +use msg::constellation_msg::{ConstellationChan, LoadData, PipelineId, SubpageId, WindowSizeData}; use msg::webdriver_msg::{WebDriverJSError, WebDriverJSResult}; use net_traits::ResourceTask; use net_traits::image_cache_task::{ImageCacheChan, ImageCacheTask}; |