Skip to content

Commit

Permalink
Rename util.rs -> layout_data.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdanfox committed Mar 3, 2015
1 parent 564d124 commit dd0df4e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/layout/construct.rs
Expand Up @@ -41,7 +41,7 @@ use table_rowgroup::TableRowGroupFlow;
use table_row::TableRowFlow;
use table_cell::TableCellFlow;
use text::TextRunScanner;
use util::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper};
use layout_data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper};
use opaque_node::OpaqueNodeMethods;
use wrapper::{PostorderNodeMutTraversal, PseudoElementType, TLayoutNode, ThreadSafeLayoutNode};

Expand Down
2 changes: 1 addition & 1 deletion components/layout/css/matching.rs
Expand Up @@ -8,7 +8,7 @@

use css::node_style::StyledNode;
use incremental::{self, RestyleDamage};
use util::{LayoutDataAccess, LayoutDataWrapper};
use layout_data::{LayoutDataAccess, LayoutDataWrapper};
use wrapper::{LayoutElement, LayoutNode, TLayoutNode};

use script::dom::node::NodeTypeId;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion components/layout/layout_task.rs
Expand Up @@ -18,7 +18,7 @@ use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAI
use layout_debug;
use parallel::{self, UnsafeFlow};
use sequential;
use util::{LayoutDataAccess, LayoutDataWrapper};
use layout_data::{LayoutDataAccess, LayoutDataWrapper};
use opaque_node::OpaqueNodeMethods;
use wrapper::{LayoutNode, TLayoutNode, ThreadSafeLayoutNode};

Expand Down
2 changes: 1 addition & 1 deletion components/layout/lib.rs
Expand Up @@ -68,6 +68,7 @@ pub mod flow_ref;
pub mod fragment;
pub mod layout_task;
pub mod inline;
pub mod layout_data;
pub mod list_item;
pub mod model;
pub mod opaque_node;
Expand All @@ -82,7 +83,6 @@ pub mod table_row;
pub mod table_cell;
pub mod text;
pub mod traversal;
pub mod util;
pub mod incremental;
pub mod wrapper;

Expand Down
4 changes: 2 additions & 2 deletions components/layout/parallel.rs
Expand Up @@ -12,10 +12,10 @@ use context::{LayoutContext, SharedLayoutContextWrapper, SharedLayoutContext};
use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal};
use flow;
use flow_ref::FlowRef;
use traversal::{RecalcStyleForNode, ConstructFlows};
use layout_data::{LayoutDataAccess, LayoutDataWrapper};
use traversal::{BubbleISizes, AssignISizes, AssignBSizesAndStoreOverflow};
use traversal::{ComputeAbsolutePositions, BuildDisplayList};
use util::{LayoutDataAccess, LayoutDataWrapper};
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};
Expand Down
4 changes: 2 additions & 2 deletions components/layout/wrapper.rs
Expand Up @@ -36,8 +36,8 @@ use canvas::canvas_paint_task::CanvasMsg;
use context::SharedLayoutContext;
use css::node_style::StyledNode;
use incremental::RestyleDamage;
use util::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper};
use util::{PrivateLayoutData};
use layout_data::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper};
use layout_data::{PrivateLayoutData};
use opaque_node::OpaqueNodeMethods;

use cssparser::RGBA;
Expand Down

0 comments on commit dd0df4e

Please sign in to comment.