diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-15 08:54:12 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-20 19:02:48 +0200 |
commit | afc7118a6706cc3af6879b7d032d5e693abd4707 (patch) | |
tree | 70d5f77deadd073ed3d71da58b3b6d899baa046e /components/layout/construct.rs | |
parent | dac8878467e36c78893542abba3d372f403b2166 (diff) | |
download | servo-afc7118a6706cc3af6879b7d032d5e693abd4707.tar.gz servo-afc7118a6706cc3af6879b7d032d5e693abd4707.zip |
Introduce a ThreadSafeLayoutNodeHelpers trait for methods to stay in layout.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 3066f8f6ae5..8c79618a6ed 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -60,7 +60,8 @@ use traversal::PostorderNodeMutTraversal; use url::Url; use util::linked_list; use util::opts; -use wrapper::{PseudoElementType, TextContent, ThreadSafeLayoutElement, ThreadSafeLayoutNode}; +use wrapper::{PseudoElementType, TextContent, ThreadSafeLayoutElement}; +use wrapper::{ThreadSafeLayoutNode, ThreadSafeLayoutNodeHelpers}; /// The results of flow construction for a DOM node. #[derive(Clone)] |