aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/timers.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-01-30 15:06:31 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2016-02-04 22:03:32 +0100
commitcb5cd8d881c39f549381e078b44f341dea733e68 (patch)
tree2035bc256a114cd362a10cf7e8c461a7743f8209 /components/script/timers.rs
parent9932a5cf82a9fb109e7ac8b07e4f19535101ce44 (diff)
downloadservo-cb5cd8d881c39f549381e078b44f341dea733e68.tar.gz
servo-cb5cd8d881c39f549381e078b44f341dea733e68.zip
Say farewell to in-tree HeapSizeOf
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 7f608f98f46..1c1157d30ae 100644
--- a/components/script/timers.rs
+++ b/components/script/timers.rs
@@ -9,6 +9,7 @@ use dom::bindings::reflector::Reflectable;
use dom::bindings::trace::JSTraceable;
use dom::window::ScriptHelpers;
use euclid::length::Length;
+use heapsize::HeapSizeOf;
use ipc_channel::ipc::IpcSender;
use js::jsapi::{HandleValue, Heap, RootedValue};
use js::jsval::{JSVal, UndefinedValue};
@@ -19,7 +20,6 @@ use std::cell::Cell;
use std::cmp::{self, Ord, Ordering};
use std::default::Default;
use std::rc::Rc;
-use util::mem::HeapSizeOf;
use util::str::DOMString;
#[derive(JSTraceable, PartialEq, Eq, Copy, Clone, HeapSizeOf, Hash, PartialOrd, Ord, Debug)]