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/bindings/refcounted.rs | |
parent | 8e78f18d2d282e651c5a8a20b2fe28cb015b264a (diff) | |
download | servo-46628fba05a548c1c2141d7c709b6e5d812f3114.tar.gz servo-46628fba05a548c1c2141d7c709b6e5d812f3114.zip |
Move Task to its own module
Diffstat (limited to 'components/script/dom/bindings/refcounted.rs')
-rw-r--r-- | components/script/dom/bindings/refcounted.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/refcounted.rs b/components/script/dom/bindings/refcounted.rs index 1be8a369d8f..4da753cb833 100644 --- a/components/script/dom/bindings/refcounted.rs +++ b/components/script/dom/bindings/refcounted.rs @@ -32,7 +32,6 @@ use dom::promise::Promise; use js::jsapi::JSAutoCompartment; use js::jsapi::JSTracer; use libc; -use script_thread::Task; use std::cell::RefCell; use std::collections::hash_map::Entry::{Occupied, Vacant}; use std::collections::hash_map::HashMap; @@ -41,6 +40,7 @@ use std::marker::PhantomData; use std::os; use std::rc::Rc; use std::sync::{Arc, Weak}; +use task::Task; #[allow(missing_docs)] // FIXME |