diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-12-08 03:31:13 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-12-08 11:46:43 +0900 |
commit | daba9043027636c0ce4fad5658ffe52077fc8cd7 (patch) | |
tree | 8dbb78da85c9eb7d64ec458502286b2b6c64c0d2 /components/layout/layout_task.rs | |
parent | ccef72385131f923edd63ffc586165aae786adf2 (diff) | |
download | servo-daba9043027636c0ce4fad5658ffe52077fc8cd7.tar.gz servo-daba9043027636c0ce4fad5658ffe52077fc8cd7.zip |
Rename gfx/render_task.rs -> gfx/paint_task.rs
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index 5a7b7011f99..9b5f4a00f22 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -28,7 +28,7 @@ use geom::scale_factor::ScaleFactor; use gfx::color; use gfx::display_list::{DisplayList, OpaqueNode, StackingContext}; use gfx::font_cache_task::FontCacheTask; -use gfx::render_task::{mod, RenderInitMsg, RenderChan, RenderLayer}; +use gfx::paint_task::{mod, RenderInitMsg, RenderChan, RenderLayer}; use layout_traits; use layout_traits::{LayoutControlMsg, LayoutTaskFactory}; use log; @@ -463,7 +463,7 @@ impl LayoutTask { LayoutTask::return_rw_data(possibly_locked_rw_data, rw_data); } - self.render_chan.send(render_task::ExitMsg(Some(response_chan))); + self.render_chan.send(paint_task::ExitMsg(Some(response_chan))); response_port.recv() } |