aboutsummaryrefslogtreecommitdiffstats
path: root/components/compositing/scrolling.rs
diff options
context:
space:
mode:
authorrohan.prinja <rohan.prinja@samsung.com>2015-11-14 05:07:55 +0900
committerRohan Prinja <rohan.prinja@gmail.com>2016-01-10 17:58:13 +0900
commit1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9 (patch)
tree7d61e58e746ddca93074ca6bca6849360a098b8c /components/compositing/scrolling.rs
parentf00532bab0382d1c24e6086314f26497fb6ffe0f (diff)
downloadservo-1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9.tar.gz
servo-1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9.zip
task -> thread
Diffstat (limited to 'components/compositing/scrolling.rs')
-rw-r--r--components/compositing/scrolling.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/compositing/scrolling.rs b/components/compositing/scrolling.rs
index 2b1bee543fb..b0551b6722c 100644
--- a/components/compositing/scrolling.rs
+++ b/components/compositing/scrolling.rs
@@ -2,9 +2,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-//! A timer thread that gives the painting task a little time to catch up when the user scrolls.
+//! A timer thread that gives the painting thread a little time to catch up when the user scrolls.
-use compositor_task::{CompositorProxy, Msg};
+use compositor_thread::{CompositorProxy, Msg};
use std::sync::mpsc::{Receiver, Sender, channel};
use std::thread::{self, Builder};
use time;