diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-09-28 16:53:00 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-10-01 07:16:11 +1000 |
commit | 339a3f869b539ae6da49f5d34568789d0abf3e00 (patch) | |
tree | 06790c2e03a77bdbb988361dcf8e0b34b97dec4b /components/layout/query.rs | |
parent | fb6d0946cb3bac713bc20794f17a40fa7a12bc00 (diff) | |
download | servo-339a3f869b539ae6da49f5d34568789d0abf3e00.tar.gz servo-339a3f869b539ae6da49f5d34568789d0abf3e00.zip |
Split Au type into separate crate, with minimal dependencies.
Diffstat (limited to 'components/layout/query.rs')
-rw-r--r-- | components/layout/query.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/query.rs b/components/layout/query.rs index 1f1eb3e6a3b..024d3022288 100644 --- a/components/layout/query.rs +++ b/components/layout/query.rs @@ -4,6 +4,7 @@ //! Utilities for querying the layout, as needed by the layout task. +use app_units::Au; use euclid::point::Point2D; use euclid::rect::Rect; use flow_ref::FlowRef; @@ -19,7 +20,6 @@ use script::layout_interface::{ResolvedStyleResponse, ScriptLayoutChan, TrustedN use sequential; use std::sync::{Arc, Mutex}; use util::cursor::Cursor; -use util::geometry::Au; use util::logical_geometry::WritingMode; pub struct LayoutRPCImpl(pub Arc<Mutex<LayoutTaskData>>); |