aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/storage.rs
diff options
context:
space:
mode:
authorPer Lundberg <perlun@gmail.com>2016-05-15 22:24:26 +0300
committerPer Lundberg <perlun@gmail.com>2016-05-15 22:24:26 +0300
commit2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2 (patch)
treeda7cdf137b99a2da034c92e455317143781863d6 /components/script/dom/storage.rs
parent7bede60272a79fe094ea81979044b4d6eceeada4 (diff)
downloadservo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.tar.gz
servo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.zip
Removed unused imports
This fixes #11185.
Diffstat (limited to 'components/script/dom/storage.rs')
-rw-r--r--components/script/dom/storage.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/storage.rs b/components/script/dom/storage.rs
index 65416c0eb25..9801c701ec7 100644
--- a/components/script/dom/storage.rs
+++ b/components/script/dom/storage.rs
@@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::StorageBinding::StorageMethods;
use dom::bindings::error::{Error, ErrorResult};
use dom::bindings::global::GlobalRef;
use dom::bindings::inheritance::Castable;
-use dom::bindings::js::{Root, RootedReference};
+use dom::bindings::js::Root;
use dom::bindings::refcounted::Trusted;
use dom::bindings::reflector::{Reflectable, Reflector, reflect_dom_object};
use dom::browsingcontext::IterableContext;
@@ -16,7 +16,6 @@ use dom::storageevent::StorageEvent;
use dom::urlhelper::UrlHelper;
use ipc_channel::ipc;
use net_traits::storage_thread::{StorageThread, StorageThreadMsg, StorageType};
-use script_runtime::ScriptChan;
use script_thread::{MainThreadRunnable, ScriptThread};
use task_source::dom_manipulation::DOMManipulationTask;
use url::Url;