diff options
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index 52b5aed1b43..b24adf944f6 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -10,16 +10,16 @@ use dom::node::LayoutData; use geom::point::Point2D; use geom::rect::Rect; -use script_traits::{ScriptControlChan, OpaqueScriptLayoutChannel, UntrustedNodeAddress}; use msg::constellation_msg::{PipelineExitType, WindowSizeData}; -use util::geometry::Au; -use util::memory::{MemoryReporter, MemoryReportsChan}; +use profile::mem::{MemoryReporter, MemoryReportsChan}; +use script_traits::{ScriptControlChan, OpaqueScriptLayoutChannel, UntrustedNodeAddress}; use std::any::Any; use std::sync::mpsc::{channel, Receiver, Sender}; use std::boxed::BoxAny; use style::stylesheets::Stylesheet; use style::media_queries::MediaQueryList; use url::Url; +use util::geometry::Au; pub use dom::node::TrustedNodeAddress; |