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/layout/context.rs | |
parent | 9932a5cf82a9fb109e7ac8b07e4f19535101ce44 (diff) | |
download | servo-cb5cd8d881c39f549381e078b44f341dea733e68.tar.gz servo-cb5cd8d881c39f549381e078b44f341dea733e68.zip |
Say farewell to in-tree HeapSizeOf
Diffstat (limited to 'components/layout/context.rs')
-rw-r--r-- | components/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/context.rs b/components/layout/context.rs index 53bb036d09c..ca4ef0851dd 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -14,6 +14,7 @@ use fnv::FnvHasher; use gfx::font_cache_thread::FontCacheThread; use gfx::font_context::FontContext; use gfx_traits::LayerId; +use heapsize::HeapSizeOf; use ipc_channel::ipc::{self, IpcSender}; use net_traits::image::base::Image; use net_traits::image_cache_thread::{ImageCacheChan, ImageCacheThread, ImageResponse, ImageState}; @@ -27,7 +28,6 @@ use std::sync::{Arc, Mutex}; use style::context::{LocalStyleContext, SharedStyleContext, StyleContext}; use style::matching::{ApplicableDeclarationsCache, StyleSharingCandidateCache}; use url::Url; -use util::mem::HeapSizeOf; use util::opts; struct LocalLayoutContext { |