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/task_source/networking.rs | |
parent | 8e78f18d2d282e651c5a8a20b2fe28cb015b264a (diff) | |
download | servo-46628fba05a548c1c2141d7c709b6e5d812f3114.tar.gz servo-46628fba05a548c1c2141d7c709b6e5d812f3114.zip |
Move Task to its own module
Diffstat (limited to 'components/script/task_source/networking.rs')
-rw-r--r-- | components/script/task_source/networking.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/task_source/networking.rs b/components/script/task_source/networking.rs index 56c583d775f..5d339037729 100644 --- a/components/script/task_source/networking.rs +++ b/components/script/task_source/networking.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use script_runtime::{CommonScriptMsg, ScriptChan, ScriptThreadEventCategory}; -use script_thread::{Task, TaskCanceller}; +use task::{Task, TaskCanceller}; use task_source::TaskSource; #[derive(JSTraceable)] |