diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-18 02:25:40 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-18 10:17:13 +0100 |
commit | db8d502f4162df1bee100a1ad96e4673ced0a78c (patch) | |
tree | c3ddfefb8866554efe59337aeb364ec248f90a91 /components/layout/layout_thread.rs | |
parent | 63dc161b773775c6755a604ec04b81c0bc479bf3 (diff) | |
download | servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.tar.gz servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.zip |
Move util::logical_geometry to style
Diffstat (limited to 'components/layout/layout_thread.rs')
-rw-r--r-- | components/layout/layout_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs index a540039c51b..e5f72a395e4 100644 --- a/components/layout/layout_thread.rs +++ b/components/layout/layout_thread.rs @@ -65,6 +65,7 @@ use style::computed_values::{filter, mix_blend_mode}; use style::context::{ReflowGoal, StylistWrapper}; use style::dom::{TDocument, TElement, TNode}; use style::error_reporting::ParseErrorReporter; +use style::logical_geometry::LogicalPoint; use style::media_queries::{Device, MediaType}; use style::parallel::WorkQueueData; use style::selector_impl::ServoSelectorImpl; @@ -75,7 +76,6 @@ use traversal::RecalcStyleAndConstructFlows; use url::Url; use util::geometry::MAX_RECT; use util::ipc::OptionalIpcSender; -use util::logical_geometry::LogicalPoint; use util::opts; use util::thread; use util::thread_state; |