diff options
-rw-r--r-- | components/layout/layout_thread.rs | 3 | ||||
-rw-r--r-- | components/layout/wrapper.rs | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs index 14179c38985..15b756a42e4 100644 --- a/components/layout/layout_thread.rs +++ b/components/layout/layout_thread.rs @@ -47,6 +47,7 @@ use query::{LayoutRPCImpl, process_content_box_request, process_content_boxes_re use query::{process_node_geometry_request, process_node_layer_id_request, process_node_scroll_area_request}; use query::{process_node_overflow_request, process_resolved_style_request, process_margin_style_query}; use script::layout_interface::{Msg, NewLayoutThreadInfo, Reflow, ReflowQueryType, ScriptReflow}; +use script::layout_wrapper::ServoLayoutNode; use script::reporter::CSSErrorReporter; use script_layout_interface::restyle_damage::{REPAINT, STORE_OVERFLOW, REFLOW_OUT_OF_FLOW, REFLOW}; use script_layout_interface::rpc::{LayoutRPC, MarginStyleResponse, NodeOverflowResponse, OffsetParentResponse}; @@ -86,7 +87,7 @@ use util::thread_state; use util::workqueue::WorkQueue; use webrender_helpers::{WebRenderDisplayListConverter, WebRenderFrameBuilder}; use webrender_traits; -use wrapper::{LayoutNodeLayoutData, NonOpaqueStyleAndLayoutData, ServoLayoutNode}; +use wrapper::{LayoutNodeLayoutData, NonOpaqueStyleAndLayoutData}; /// 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; diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index a7949fc75b1..6db7f8b7cc2 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -38,8 +38,6 @@ use std::cell::{Ref, RefCell, RefMut}; use style::computed_values::content::{self, ContentItem}; use style::properties::ComputedValues; -pub use script::layout_wrapper::*; - pub type NonOpaqueStyleAndLayoutData = *mut RefCell<PrivateLayoutData>; pub trait LayoutNodeLayoutData { |