aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/timers.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-05-22 13:25:07 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-05-24 10:54:57 +0200
commitcdc7bca944b6ffebc59169d42331fffbee7f71ee (patch)
treeb727287bb85a82b9ff16c1eac1737d09749be2f4 /components/script/timers.rs
parent7b467ee52d59d1d2f078948acc9e4d188eac7338 (diff)
downloadservo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.tar.gz
servo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.zip
Move DOMString back to script
This entirely removes the 'non-geckolib' feature of the util crate.
Diffstat (limited to 'components/script/timers.rs')
-rw-r--r--components/script/timers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/timers.rs b/components/script/timers.rs
index c680fe408bc..18058b7f9f7 100644
--- a/components/script/timers.rs
+++ b/components/script/timers.rs
@@ -7,6 +7,7 @@ use dom::bindings::cell::DOMRefCell;
use dom::bindings::codegen::Bindings::FunctionBinding::Function;
use dom::bindings::global::GlobalRef;
use dom::bindings::reflector::Reflectable;
+use dom::bindings::str::DOMString;
use dom::window::ScriptHelpers;
use dom::xmlhttprequest::XHRTimeoutCallback;
use euclid::length::Length;
@@ -21,7 +22,6 @@ use std::cmp::{self, Ord, Ordering};
use std::collections::HashMap;
use std::default::Default;
use std::rc::Rc;
-use util::str::DOMString;
#[derive(JSTraceable, PartialEq, Eq, Copy, Clone, HeapSizeOf, Hash, PartialOrd, Ord, Debug)]
pub struct OneshotTimerHandle(i32);