diff options
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index e55805486b3..793bc083723 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -53,16 +53,16 @@ use msg::constellation_msg::{ConstellationChan, Failure, PipelineExitType, Pipel use net::image_cache_task::{ImageCacheTask, ImageResponseMsg}; use net::local_image_cache::{ImageResponder, LocalImageCache}; use net::resource_task::{ResourceTask, load_bytes_iter}; -use servo_util::cursor::Cursor; -use servo_util::geometry::Au; -use servo_util::logical_geometry::LogicalPoint; -use servo_util::opts; -use servo_util::smallvec::{SmallVec, SmallVec1, VecLike}; -use servo_util::task::spawn_named_with_send_on_failure; -use servo_util::task_state; -use servo_util::time::{TimeProfilerCategory, ProfilerMetadata, TimeProfilerChan}; -use servo_util::time::{TimerMetadataFrameType, TimerMetadataReflowType, profile}; -use servo_util::workqueue::WorkQueue; +use util::cursor::Cursor; +use util::geometry::Au; +use util::logical_geometry::LogicalPoint; +use util::opts; +use util::smallvec::{SmallVec, SmallVec1, VecLike}; +use util::task::spawn_named_with_send_on_failure; +use util::task_state; +use util::time::{TimeProfilerCategory, ProfilerMetadata, TimeProfilerChan}; +use util::time::{TimerMetadataFrameType, TimerMetadataReflowType, profile}; +use util::workqueue::WorkQueue; use std::borrow::ToOwned; use std::cell::Cell; use std::ops::{Deref, DerefMut}; |