diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2015-11-21 09:12:43 -0800 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2015-11-21 11:26:49 -0800 |
commit | afa3834f3be849cd4e6745b9fe763df512e4f9fc (patch) | |
tree | 2dfd0ab707fe83dfda664f671c1f9bce86a20d7c /components/layout/layout_task.rs | |
parent | a85ae24c516a0e69f53a5664c1451ca2da3424e0 (diff) | |
download | servo-afa3834f3be849cd4e6745b9fe763df512e4f9fc.tar.gz servo-afa3834f3be849cd4e6745b9fe763df512e4f9fc.zip |
Rename ThreadSafeLayoutFoo to ServoThreadSafeLayoutFoo and TThreadSafeLayoutFoo to ThreadSafeLayoutFoo.
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index 480fbc24c0a..d9bbc2b78cc 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -73,7 +73,8 @@ use util::opts; use util::task; use util::task_state; use util::workqueue::WorkQueue; -use wrapper::{LayoutDocument, LayoutElement, LayoutNode, ServoLayoutNode, TThreadSafeLayoutNode}; +use wrapper::{LayoutDocument, LayoutElement, LayoutNode}; +use wrapper::{ServoLayoutNode, ThreadSafeLayoutNode}; /// The number of screens of data we're allowed to generate display lists for in each direction. pub const DISPLAY_PORT_SIZE_FACTOR: i32 = 8; |