diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2016-11-02 18:46:04 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2016-11-07 11:10:48 -0800 |
commit | a2c7a9d0fb7174f9188640ba2fb5a3df7821c1a8 (patch) | |
tree | 8fe3228394856e7f55053c3399e2887a64d263e8 /components/layout/sequential.rs | |
parent | b69fdad8e44d77b5a946ee4155ab3da3320d93cd (diff) | |
download | servo-a2c7a9d0fb7174f9188640ba2fb5a3df7821c1a8.tar.gz servo-a2c7a9d0fb7174f9188640ba2fb5a3df7821c1a8.zip |
Stop using associated types for the concrete TRestyleDamage implementation.
MozReview-Commit-ID: LfaZFCVlIb1
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r-- | components/layout/sequential.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index 59819efe414..71626243206 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -15,8 +15,8 @@ use flow::IS_ABSOLUTELY_POSITIONED; use fragment::FragmentBorderBoxIterator; use generated_content::ResolveGeneratedContent; use gfx_traits::ScrollRootId; -use script_layout_interface::restyle_damage::{REFLOW, STORE_OVERFLOW}; use style::context::StyleContext; +use style::servo::restyle_damage::{REFLOW, STORE_OVERFLOW}; use traversal::{AssignBSizes, AssignISizes, BubbleISizes, BuildDisplayList}; use util::opts; |