diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 17:23:56 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-06 15:26:02 +0100 |
commit | 76e59a46d3aff701b2e8dfbaf047f6d5c3edcced (patch) | |
tree | ee36ca9b3f981d01184871fe72fbc31347086e92 /components/layout/context.rs | |
parent | 45f7199eee82c66637ec68287eafa40a651001c4 (diff) | |
download | servo-76e59a46d3aff701b2e8dfbaf047f6d5c3edcced.tar.gz servo-76e59a46d3aff701b2e8dfbaf047f6d5c3edcced.zip |
Sort `use` statements
Diffstat (limited to 'components/layout/context.rs')
-rw-r--r-- | components/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/context.rs b/components/layout/context.rs index be3f3e41ff2..134a3cedec1 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -5,6 +5,7 @@ //! Data needed by the layout thread. use crate::display_list::items::{WebRenderImageInfo, OpaqueNode}; +use crate::opaque_node::OpaqueNodeMethods; use fnv::FnvHasher; use gfx::font_cache_thread::FontCacheThread; use gfx::font_context::FontContext; @@ -12,7 +13,6 @@ use malloc_size_of::{MallocSizeOf, MallocSizeOfOps}; use msg::constellation_msg::PipelineId; use net_traits::image_cache::{CanRequestImages, ImageCache, ImageState}; use net_traits::image_cache::{ImageOrMetadataAvailable, UsePlaceholder}; -use crate::opaque_node::OpaqueNodeMethods; use parking_lot::RwLock; use script_layout_interface::{PendingImage, PendingImageState}; use script_traits::Painter; |