diff options
Diffstat (limited to 'components/layout_2020/query.rs')
-rw-r--r-- | components/layout_2020/query.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout_2020/query.rs b/components/layout_2020/query.rs index d766709f6f8..a2524bb6bcd 100644 --- a/components/layout_2020/query.rs +++ b/components/layout_2020/query.rs @@ -34,14 +34,14 @@ use style::values::generics::text::LineHeight; use style_traits::CSSPixel; use style_traits::ToCss; use webrender_api::units::LayoutPixel; -use webrender_api::ExternalScrollId; +use webrender_api::{DisplayListBuilder, ExternalScrollId}; /// Mutable data belonging to the LayoutThread. /// /// This needs to be protected by a mutex so we can do fast RPCs. pub struct LayoutThreadData { /// The root stacking context. - pub display_list: Option<webrender_api::DisplayListBuilder>, + pub display_list: Option<DisplayListBuilder>, /// A queued response for the union of the content boxes of a node. pub content_box_response: Option<Rect<Au>>, |