aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-06-15 15:04:04 +0100
committerMs2ger <Ms2ger@gmail.com>2016-06-20 19:07:54 +0200
commit0d0b268138674598e4c9c6e979b9245cfbc795d6 (patch)
tree11ebb6023c7a8006991916491d4b5b1b88538006 /components/layout/construct.rs
parent000e2de57a7b458900778e4528025482f88a269d (diff)
downloadservo-0d0b268138674598e4c9c6e979b9245cfbc795d6.tar.gz
servo-0d0b268138674598e4c9c6e979b9245cfbc795d6.zip
Move LayoutNode and related traits to script_layout_interface.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index c600b0ce8e6..27c6f629ca6 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -35,6 +35,7 @@ use multicol::{MulticolFlow, MulticolColumnFlow};
use parallel;
use script::layout_interface::is_image_data;
use script_layout_interface::restyle_damage::{BUBBLE_ISIZES, RECONSTRUCT_FLOW, RestyleDamage};
+use script_layout_interface::wrapper_traits::{ThreadSafeLayoutNode, PseudoElementType, ThreadSafeLayoutElement};
use script_layout_interface::{LayoutNodeType, LayoutElementType};
use std::borrow::ToOwned;
use std::collections::LinkedList;
@@ -59,8 +60,7 @@ use traversal::PostorderNodeMutTraversal;
use url::Url;
use util::linked_list;
use util::opts;
-use wrapper::{PseudoElementType, TextContent, ThreadSafeLayoutElement};
-use wrapper::{ThreadSafeLayoutNode, ThreadSafeLayoutNodeHelpers};
+use wrapper::{TextContent, ThreadSafeLayoutNodeHelpers};
/// The results of flow construction for a DOM node.
#[derive(Clone)]