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/traversal.rs | |
parent | 05db7b3652fa61ed3643b52c402dd31aa427d83f (diff) | |
download | servo-a85ae24c516a0e69f53a5664c1451ca2da3424e0.tar.gz servo-a85ae24c516a0e69f53a5664c1451ca2da3424e0.zip |
Hoist exported ThreadSafeLayoutFoo functionality into traits.
Diffstat (limited to 'components/layout/traversal.rs')
-rw-r--r-- | components/layout/traversal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs index 2a25b01df95..49301da8490 100644 --- a/components/layout/traversal.rs +++ b/components/layout/traversal.rs @@ -18,7 +18,7 @@ use std::mem; use util::opts; use util::tid::tid; use wrapper::{LayoutNode, ServoLayoutNode, layout_node_to_unsafe_layout_node}; -use wrapper::{ThreadSafeLayoutNode, UnsafeLayoutNode}; +use wrapper::{ThreadSafeLayoutNode, TThreadSafeLayoutNode, UnsafeLayoutNode}; /// Every time we do another layout, the old bloom filters are invalid. This is /// detected by ticking a generation number every layout. |