diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-11-03 14:31:14 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-11-03 16:45:07 +0100 |
commit | 4fbe415e8023538779dc9825e0da8fdc26f46c8f (patch) | |
tree | bed7c172ced1ad86c8666fa3ff73aa48061a1e6c /components/script/dom/bluetoothremotegattcharacteristic.rs | |
parent | e3493cdd26f6faab0ddf6503ad19f0af169ad880 (diff) | |
download | servo-4fbe415e8023538779dc9825e0da8fdc26f46c8f.tar.gz servo-4fbe415e8023538779dc9825e0da8fdc26f46c8f.zip |
Split the bluetooth code out from the net crates.
Diffstat (limited to 'components/script/dom/bluetoothremotegattcharacteristic.rs')
-rw-r--r-- | components/script/dom/bluetoothremotegattcharacteristic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bluetoothremotegattcharacteristic.rs b/components/script/dom/bluetoothremotegattcharacteristic.rs index 95b26ff66c1..0fae7548ede 100644 --- a/components/script/dom/bluetoothremotegattcharacteristic.rs +++ b/components/script/dom/bluetoothremotegattcharacteristic.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use bluetooth_blacklist::{Blacklist, uuid_is_blacklisted}; +use bluetooth_traits::BluetoothMethodMsg; use dom::bindings::cell::DOMRefCell; use dom::bindings::codegen::Bindings::BluetoothCharacteristicPropertiesBinding:: BluetoothCharacteristicPropertiesMethods; @@ -25,7 +26,6 @@ use dom::bluetoothuuid::{BluetoothDescriptorUUID, BluetoothUUID}; use dom::globalscope::GlobalScope; use dom::promise::Promise; use ipc_channel::ipc::{self, IpcSender}; -use net_traits::bluetooth_thread::BluetoothMethodMsg; use std::rc::Rc; // Maximum length of an attribute value. |