diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-01-11 09:54:25 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-01-11 10:00:17 +0100 |
commit | 9dc85e0d40ad207d05003103719dbfe217223e3a (patch) | |
tree | 0753cf1074a0583ee15e99a40e055a8a375e7261 /components/script/layout_interface.rs | |
parent | 39ba25572b7f0292ece70022960132d361ffc849 (diff) | |
download | servo-9dc85e0d40ad207d05003103719dbfe217223e3a.tar.gz servo-9dc85e0d40ad207d05003103719dbfe217223e3a.zip |
Stop reexporting ReflowGoal from layout_interface.
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index 3a081f6a0e3..4fb8e9bd984 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -24,11 +24,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::context::ReflowGoal; pub use dom::node::TrustedNodeAddress; /// Asynchronous messages that script can send to layout. |