diff options
Diffstat (limited to 'components/gfx/paint_task.rs')
-rw-r--r-- | components/gfx/paint_task.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/gfx/paint_task.rs b/components/gfx/paint_task.rs index 21eff70f32f..3a8243af100 100644 --- a/components/gfx/paint_task.rs +++ b/components/gfx/paint_task.rs @@ -25,12 +25,12 @@ use servo_msg::compositor_msg::{LayerMetadata, PaintListener, ScrollPolicy}; use servo_msg::constellation_msg::Msg as ConstellationMsg; use servo_msg::constellation_msg::{ConstellationChan, Failure, PipelineId}; use servo_msg::constellation_msg::PipelineExitType; -use servo_util::geometry::{Au, ZERO_POINT}; -use servo_util::opts; -use servo_util::smallvec::SmallVec; -use servo_util::task::spawn_named_with_send_on_failure; -use servo_util::task_state; -use servo_util::time::{TimeProfilerChan, TimeProfilerCategory, profile}; +use util::geometry::{Au, ZERO_POINT}; +use util::opts; +use util::smallvec::SmallVec; +use util::task::spawn_named_with_send_on_failure; +use util::task_state; +use util::time::{TimeProfilerChan, TimeProfilerCategory, profile}; use std::mem; use std::thread::Builder; use std::sync::Arc; |