aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/layout_task.rs
diff options
context:
space:
mode:
authorDan Fox <iamdanfox@gmail.com>2015-03-05 17:42:05 +0000
committerDan Fox <iamdanfox@gmail.com>2015-03-05 17:42:05 +0000
commit559ff68b31eabdf1025fba2fcc386b504256a0b2 (patch)
tree48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/layout_task.rs
parent19686acdec7a8f6e36fe999a2896ed44718f42d6 (diff)
downloadservo-559ff68b31eabdf1025fba2fcc386b504256a0b2.tar.gz
servo-559ff68b31eabdf1025fba2fcc386b504256a0b2.zip
Get rid of servo_util
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r--components/layout/layout_task.rs20
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};