diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 00:30:37 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 08:42:47 +0200 |
commit | 6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4 (patch) | |
tree | 7e29d51d99283a5d54f46f3b9ee15819e4ad7810 /components/layout_thread/lib.rs | |
parent | 5c70dfab01ed434c609177d1b3be4a8936f641d6 (diff) | |
download | servo-6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4.tar.gz servo-6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4.zip |
Remove some type aliases that are now just re-exports.
Diffstat (limited to 'components/layout_thread/lib.rs')
-rw-r--r-- | components/layout_thread/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/layout_thread/lib.rs b/components/layout_thread/lib.rs index f6cfc31e030..7fc12535ff7 100644 --- a/components/layout_thread/lib.rs +++ b/components/layout_thread/lib.rs @@ -98,17 +98,18 @@ use std::ops::{Deref, DerefMut}; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::mpsc::{channel, Sender, Receiver}; use std::sync::{Arc, Mutex, MutexGuard, RwLock}; +use style::animation::Animation; use style::computed_values::{filter, mix_blend_mode}; -use style::context::ReflowGoal; +use style::context::{ReflowGoal, LocalStyleContextCreationInfo, SharedStyleContext}; 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::refcell::RefCell; -use style::servo::{Animation, LocalStyleContextCreationInfo, SharedStyleContext, Stylesheet, Stylist}; +use style::selector_matching::Stylist; use style::servo_selector_impl::USER_OR_USER_AGENT_STYLESHEETS; -use style::stylesheets::CSSRuleIteratorExt; +use style::stylesheets::{Stylesheet, CSSRuleIteratorExt}; use style::workqueue::WorkQueue; use url::Url; use util::geometry::MAX_RECT; |