aboutsummaryrefslogtreecommitdiffstats
path: root/components/compositing/headless.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-01-29 12:16:41 +0100
committerMs2ger <ms2ger@gmail.com>2015-01-29 12:16:41 +0100
commit505159a46446340b8f0c860d8dc100df8902e2bf (patch)
tree7264d02ee31b4055898697f47b5f2436d04b192e /components/compositing/headless.rs
parent221a343883f510c7743908136438f5ed40bd17ed (diff)
downloadservo-505159a46446340b8f0c860d8dc100df8902e2bf.tar.gz
servo-505159a46446340b8f0c860d8dc100df8902e2bf.zip
Import the util crate as util rather than servo_util.
This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
Diffstat (limited to 'components/compositing/headless.rs')
-rw-r--r--components/compositing/headless.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/compositing/headless.rs b/components/compositing/headless.rs
index 4fdfe094806..d374cb28e54 100644
--- a/components/compositing/headless.rs
+++ b/components/compositing/headless.rs
@@ -9,10 +9,10 @@ use geom::scale_factor::ScaleFactor;
use geom::size::TypedSize2D;
use servo_msg::constellation_msg::Msg as ConstellationMsg;
use servo_msg::constellation_msg::{ConstellationChan, WindowSizeData};
-use servo_util::memory::MemoryProfilerChan;
-use servo_util::memory;
-use servo_util::time::TimeProfilerChan;
-use servo_util::time;
+use util::memory::MemoryProfilerChan;
+use util::memory;
+use util::time::TimeProfilerChan;
+use util::time;
/// Starts the compositor, which listens for messages on the specified port.
///