diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-11 23:57:51 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-11 23:57:51 +0530 |
commit | 47617578af97204168fb985b956d8c85c2b9f349 (patch) | |
tree | a2bbed701756c5777efcad969cec1068fb41b542 /components/script/layout_interface.rs | |
parent | 099beee85c02d391b854dc5e06da34f89df8b760 (diff) | |
parent | 9dc85e0d40ad207d05003103719dbfe217223e3a (diff) | |
download | servo-47617578af97204168fb985b956d8c85c2b9f349.tar.gz servo-47617578af97204168fb985b956d8c85c2b9f349.zip |
Auto merge of #9245 - Ms2ger:reexports, r=nox
Stop reexporting style types from layout_interface.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9245)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index ec889087ec8..7c555efcca6 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -23,12 +23,11 @@ use std::any::Any; use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender, channel}; use string_cache::Atom; +use style::context::ReflowGoal; use style::stylesheets::Stylesheet; use url::Url; use util::ipc::OptionalOpaqueIpcSender; -pub use style::animation::Animation; -pub use style::context::ReflowGoal; pub use dom::node::TrustedNodeAddress; /// Asynchronous messages that script can send to layout. |