diff options
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index 2bf311647c0..17bd99b0749 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -37,11 +37,11 @@ use ipc_channel::router::ROUTER; use layout_debug; use layout_traits::LayoutTaskFactory; use log; -use msg::compositor_msg::{Epoch, ScrollPolicy, LayerId}; +use msg::compositor_msg::{Epoch, LayerId, ScrollPolicy}; use msg::constellation_msg::Msg as ConstellationMsg; use msg::constellation_msg::{ConstellationChan, Failure, PipelineExitType, PipelineId}; -use net_traits::image_cache_task::{ImageCacheTask, ImageCacheResult, ImageCacheChan}; -use net_traits::{load_bytes_iter, PendingAsyncLoad}; +use net_traits::image_cache_task::{ImageCacheChan, ImageCacheResult, ImageCacheTask}; +use net_traits::{PendingAsyncLoad, load_bytes_iter}; use opaque_node::OpaqueNodeMethods; use parallel::{self, WorkQueueData}; use profile_traits::mem::{self, Report, ReportKind, ReportsChan}; @@ -54,7 +54,7 @@ use script::dom::bindings::js::LayoutJS; use script::dom::node::{LayoutData, Node}; use script::layout_interface::Animation; use script::layout_interface::{LayoutChan, LayoutRPC, OffsetParentResponse}; -use script::layout_interface::{NewLayoutTaskInfo, Msg, Reflow, ReflowGoal, ReflowQueryType}; +use script::layout_interface::{Msg, NewLayoutTaskInfo, Reflow, ReflowGoal, ReflowQueryType}; use script::layout_interface::{ScriptLayoutChan, ScriptReflow, TrustedNodeAddress}; use script_traits::StylesheetLoadResponder; use script_traits::{ConstellationControlMsg, LayoutControlMsg, OpaqueScriptLayoutChannel}; @@ -67,15 +67,15 @@ use std::collections::HashMap; use std::collections::hash_state::DefaultState; use std::mem::transmute; use std::ops::{Deref, DerefMut}; -use std::sync::mpsc::{channel, Sender, Receiver, Select}; +use std::sync::mpsc::{Receiver, Select, Sender, channel}; use std::sync::{Arc, Mutex, MutexGuard}; use string_cache::Atom; use style::computed_values::{self, filter, mix_blend_mode}; -use style::media_queries::{MediaType, MediaQueryList, Device}; +use style::media_queries::{Device, MediaQueryList, MediaType}; use style::properties::longhands::{display, position}; use style::properties::style_structs; use style::selector_matching::Stylist; -use style::stylesheets::{Origin, Stylesheet, CSSRuleIteratorExt}; +use style::stylesheets::{CSSRuleIteratorExt, Origin, Stylesheet}; use url::Url; use util::geometry::{Au, MAX_RECT, ZERO_POINT}; use util::ipc::OptionalIpcSender; |