layout/layout_data.rs -> layout/data.rs

This commit is contained in:
Dan Fox 2015-03-03 19:59:38 +00:00
parent 3f9032c1a1
commit 3441b2c329
7 changed files with 6 additions and 6 deletions

View file

@ -31,7 +31,7 @@ use fragment::{Fragment, IframeFragmentInfo};
use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo}; use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo};
use incremental::{RECONSTRUCT_FLOW, RestyleDamage}; use incremental::{RECONSTRUCT_FLOW, RestyleDamage};
use inline::InlineFlow; use inline::InlineFlow;
use layout_data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper}; use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper};
use list_item::{self, ListItemFlow}; use list_item::{self, ListItemFlow};
use opaque_node::OpaqueNodeMethods; use opaque_node::OpaqueNodeMethods;
use parallel; use parallel;

View file

@ -8,7 +8,7 @@
use css::node_style::StyledNode; use css::node_style::StyledNode;
use incremental::{self, RestyleDamage}; use incremental::{self, RestyleDamage};
use layout_data::{LayoutDataAccess, LayoutDataWrapper}; use data::{LayoutDataAccess, LayoutDataWrapper};
use wrapper::{LayoutElement, LayoutNode, TLayoutNode}; use wrapper::{LayoutElement, LayoutNode, TLayoutNode};
use script::dom::node::NodeTypeId; use script::dom::node::NodeTypeId;

View file

@ -15,7 +15,7 @@ use flow::{self, Flow, ImmutableFlowUtils, MutableFlowUtils, MutableOwnedFlowUti
use flow_ref::FlowRef; use flow_ref::FlowRef;
use fragment::{Fragment, FragmentBorderBoxIterator}; use fragment::{Fragment, FragmentBorderBoxIterator};
use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAINT}; use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAINT};
use layout_data::{LayoutDataAccess, LayoutDataWrapper}; use data::{LayoutDataAccess, LayoutDataWrapper};
use layout_debug; use layout_debug;
use opaque_node::OpaqueNodeMethods; use opaque_node::OpaqueNodeMethods;
use parallel::{self, UnsafeFlow}; use parallel::{self, UnsafeFlow};

View file

@ -60,6 +60,7 @@ pub mod layout_debug;
pub mod block; pub mod block;
pub mod construct; pub mod construct;
pub mod context; pub mod context;
pub mod data;
pub mod display_list_builder; pub mod display_list_builder;
pub mod floats; pub mod floats;
pub mod flow; pub mod flow;
@ -68,7 +69,6 @@ pub mod flow_ref;
pub mod fragment; pub mod fragment;
pub mod layout_task; pub mod layout_task;
pub mod inline; pub mod inline;
pub mod layout_data;
pub mod list_item; pub mod list_item;
pub mod model; pub mod model;
pub mod opaque_node; pub mod opaque_node;

View file

@ -12,7 +12,7 @@ use context::{LayoutContext, SharedLayoutContextWrapper, SharedLayoutContext};
use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal}; use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal};
use flow; use flow;
use flow_ref::FlowRef; use flow_ref::FlowRef;
use layout_data::{LayoutDataAccess, LayoutDataWrapper}; use data::{LayoutDataAccess, LayoutDataWrapper};
use traversal::{BubbleISizes, AssignISizes, AssignBSizesAndStoreOverflow}; use traversal::{BubbleISizes, AssignISizes, AssignBSizesAndStoreOverflow};
use traversal::{ComputeAbsolutePositions, BuildDisplayList}; use traversal::{ComputeAbsolutePositions, BuildDisplayList};
use traversal::{RecalcStyleForNode, ConstructFlows}; use traversal::{RecalcStyleForNode, ConstructFlows};

View file

@ -36,7 +36,7 @@ use canvas::canvas_paint_task::CanvasMsg;
use context::SharedLayoutContext; use context::SharedLayoutContext;
use css::node_style::StyledNode; use css::node_style::StyledNode;
use incremental::RestyleDamage; use incremental::RestyleDamage;
use layout_data::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper, PrivateLayoutData}; use data::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper, PrivateLayoutData};
use opaque_node::OpaqueNodeMethods; use opaque_node::OpaqueNodeMethods;
use cssparser::RGBA; use cssparser::RGBA;