diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-01-30 15:06:31 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-04 22:03:32 +0100 |
commit | cb5cd8d881c39f549381e078b44f341dea733e68 (patch) | |
tree | 2035bc256a114cd362a10cf7e8c461a7743f8209 /components/script/dom/bindings/utils.rs | |
parent | 9932a5cf82a9fb109e7ac8b07e4f19535101ce44 (diff) | |
download | servo-cb5cd8d881c39f549381e078b44f341dea733e68.tar.gz servo-cb5cd8d881c39f549381e078b44f341dea733e68.zip |
Say farewell to in-tree HeapSizeOf
Diffstat (limited to 'components/script/dom/bindings/utils.rs')
-rw-r--r-- | components/script/dom/bindings/utils.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/utils.rs b/components/script/dom/bindings/utils.rs index d34d8f3f9f4..83e7a2e4cb2 100644 --- a/components/script/dom/bindings/utils.rs +++ b/components/script/dom/bindings/utils.rs @@ -13,6 +13,7 @@ use dom::bindings::inheritance::TopTypeId; use dom::bindings::trace::trace_object; use dom::browsingcontext; use dom::window; +use heapsize::HeapSizeOf; use js; use js::error::throw_type_error; use js::glue::{CallJitGetterOp, CallJitMethodOp, CallJitSetterOp, IsWrapper}; @@ -36,7 +37,6 @@ use libc::{self, c_uint}; use std::default::Default; use std::ffi::CString; use std::ptr; -use util::mem::HeapSizeOf; use util::non_geckolib::jsstring_to_str; /// Proxy handler for a WindowProxy. |