diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2015-11-20 19:12:04 -0800 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2015-11-21 11:25:20 -0800 |
commit | a85ae24c516a0e69f53a5664c1451ca2da3424e0 (patch) | |
tree | 0657c953aec3ef2515968fcd16aa4f00fa79cb5d /components/layout/flow.rs | |
parent | 05db7b3652fa61ed3643b52c402dd31aa427d83f (diff) | |
download | servo-a85ae24c516a0e69f53a5664c1451ca2da3424e0.tar.gz servo-a85ae24c516a0e69f53a5664c1451ca2da3424e0.zip |
Hoist exported ThreadSafeLayoutFoo functionality into traits.
Diffstat (limited to 'components/layout/flow.rs')
-rw-r--r-- | components/layout/flow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/flow.rs b/components/layout/flow.rs index 8251bd88b6c..177b8f67135 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -58,7 +58,7 @@ use table_rowgroup::TableRowGroupFlow; use table_wrapper::TableWrapperFlow; use util::geometry::ZERO_RECT; use util::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; -use wrapper::{PseudoElementType, ThreadSafeLayoutNode}; +use wrapper::{PseudoElementType, ThreadSafeLayoutNode, TThreadSafeLayoutNode}; /// Virtual methods that make up a float context. /// |