aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/flow.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-06-14 19:29:43 +0100
committerMs2ger <Ms2ger@gmail.com>2016-06-20 19:02:36 +0200
commit5c03dd8eb15290c7e47e8a15172051c751a1109c (patch)
tree7f591e3ba9bf5e64540f9bd7cfcaacdb62e4cc3b /components/layout/flow.rs
parente5cab3667165765669f2546aa683cfe73e0494af (diff)
downloadservo-5c03dd8eb15290c7e47e8a15172051c751a1109c.tar.gz
servo-5c03dd8eb15290c7e47e8a15172051c751a1109c.zip
Introduce a script_layout_interface crate and move RestyleDamage to it.
Diffstat (limited to 'components/layout/flow.rs')
-rw-r--r--components/layout/flow.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/flow.rs b/components/layout/flow.rs
index 350092acc90..79aa1daaaa5 100644
--- a/components/layout/flow.rs
+++ b/components/layout/flow.rs
@@ -36,12 +36,12 @@ use flow_ref::{self, FlowRef, WeakFlowRef};
use fragment::{Fragment, FragmentBorderBoxIterator, Overflow, SpecificFragmentInfo};
use gfx::display_list::{ClippingRegion, StackingContext};
use gfx_traits::{LayerId, LayerType, StackingContextId};
-use incremental::{RECONSTRUCT_FLOW, REFLOW, REFLOW_OUT_OF_FLOW, REPAINT, RestyleDamage};
use inline::InlineFlow;
use model::{CollapsibleMargins, IntrinsicISizes, MarginCollapseInfo};
use multicol::MulticolFlow;
use parallel::FlowParallelInfo;
use rustc_serialize::{Encodable, Encoder};
+use script_layout_interface::restyle_damage::{RECONSTRUCT_FLOW, REFLOW, REFLOW_OUT_OF_FLOW, REPAINT, RestyleDamage};
use std::iter::Zip;
use std::slice::IterMut;
use std::sync::Arc;