mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Move the traversal traits into the traversal module.
This commit is contained in:
parent
acf47a02cf
commit
3e2c44114c
5 changed files with 35 additions and 32 deletions
|
@ -12,12 +12,13 @@ use context::{LayoutContext, SharedLayoutContext};
|
|||
use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal};
|
||||
use flow;
|
||||
use flow_ref::FlowRef;
|
||||
use traversal::{PreorderDomTraversal, PostorderDomTraversal};
|
||||
use traversal::PostorderNodeMutTraversal;
|
||||
use traversal::{BubbleISizes, AssignISizes, AssignBSizesAndStoreOverflow};
|
||||
use traversal::{ComputeAbsolutePositions, BuildDisplayList};
|
||||
use traversal::{RecalcStyleForNode, ConstructFlows};
|
||||
use wrapper::{layout_node_to_unsafe_layout_node, layout_node_from_unsafe_layout_node, LayoutNode};
|
||||
use wrapper::{PostorderNodeMutTraversal, UnsafeLayoutNode};
|
||||
use wrapper::{PreorderDomTraversal, PostorderDomTraversal};
|
||||
use wrapper::UnsafeLayoutNode;
|
||||
|
||||
use profile_traits::time::{self, ProfilerMetadata, profile};
|
||||
use std::mem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue