aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/parallel.rs
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2015-11-18 16:59:40 -0800
committerBobby Holley <bobbyholley@gmail.com>2015-11-18 17:24:36 -0800
commit2f6e94943a0b444eb0b2c38ad9b302799447d44d (patch)
treee51f5a4bbc6d61e65531d2daad76ac044031e355 /components/layout/parallel.rs
parent9dd45b9f2ac555aa478b0c5e760bd8c718c76627 (diff)
downloadservo-2f6e94943a0b444eb0b2c38ad9b302799447d44d.tar.gz
servo-2f6e94943a0b444eb0b2c38ad9b302799447d44d.zip
Rename Layout*Trait to Layout*.
The next step will be to remote the Servo-specificity of the layout code we want to share by making it operate generically on Layout*.
Diffstat (limited to 'components/layout/parallel.rs')
-rw-r--r--components/layout/parallel.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs
index f439e6caefd..c8549c37eb6 100644
--- a/components/layout/parallel.rs
+++ b/components/layout/parallel.rs
@@ -23,7 +23,7 @@ use traversal::{PostorderDomTraversal, PreorderDomTraversal};
use util::opts;
use util::workqueue::{WorkQueue, WorkUnit, WorkerProxy};
use wrapper::UnsafeLayoutNode;
-use wrapper::{ServoLayoutNode, LayoutNodeTrait, layout_node_from_unsafe_layout_node, layout_node_to_unsafe_layout_node};
+use wrapper::{LayoutNode, ServoLayoutNode, layout_node_from_unsafe_layout_node, layout_node_to_unsafe_layout_node};
const CHUNK_SIZE: usize = 64;