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/bluetooth.rs | |
parent | 8e78f18d2d282e651c5a8a20b2fe28cb015b264a (diff) | |
download | servo-46628fba05a548c1c2141d7c709b6e5d812f3114.tar.gz servo-46628fba05a548c1c2141d7c709b6e5d812f3114.zip |
Move Task to its own module
Diffstat (limited to 'components/script/dom/bluetooth.rs')
-rw-r--r-- | components/script/dom/bluetooth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bluetooth.rs b/components/script/dom/bluetooth.rs index 35e6fdde3b1..2cd557d52b8 100644 --- a/components/script/dom/bluetooth.rs +++ b/components/script/dom/bluetooth.rs @@ -35,12 +35,12 @@ use ipc_channel::router::ROUTER; use js::conversions::ConversionResult; use js::jsapi::{JSAutoCompartment, JSContext, JSObject}; use js::jsval::{ObjectValue, UndefinedValue}; -use script_thread::Task; use std::cell::Ref; use std::collections::HashMap; use std::rc::Rc; use std::str::FromStr; use std::sync::{Arc, Mutex}; +use task::Task; const KEY_CONVERSION_ERROR: &'static str = "This `manufacturerData` key can not be parsed as unsigned short:"; const FILTER_EMPTY_ERROR: &'static str = "'filters' member, if present, must be nonempty to find any devices."; |