aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout
diff options
context:
space:
mode:
authorTetsuharu OHZEKI <saneyuki.snyk@gmail.com>2014-12-08 03:31:13 +0900
committerTetsuharu OHZEKI <saneyuki.snyk@gmail.com>2014-12-08 11:46:43 +0900
commitdaba9043027636c0ce4fad5658ffe52077fc8cd7 (patch)
tree8dbb78da85c9eb7d64ec458502286b2b6c64c0d2 /components/layout
parentccef72385131f923edd63ffc586165aae786adf2 (diff)
downloadservo-daba9043027636c0ce4fad5658ffe52077fc8cd7.tar.gz
servo-daba9043027636c0ce4fad5658ffe52077fc8cd7.zip
Rename gfx/render_task.rs -> gfx/paint_task.rs
Diffstat (limited to 'components/layout')
-rw-r--r--components/layout/display_list_builder.rs2
-rw-r--r--components/layout/layout_task.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/display_list_builder.rs b/components/layout/display_list_builder.rs
index 56eb4e4cf34..79866baa1ad 100644
--- a/components/layout/display_list_builder.rs
+++ b/components/layout/display_list_builder.rs
@@ -30,7 +30,7 @@ use gfx::display_list::{ImageDisplayItem, ImageDisplayItemClass, LineDisplayItem
use gfx::display_list::{LineDisplayItemClass, PseudoDisplayItemClass, SidewaysLeft, SidewaysRight};
use gfx::display_list::{SolidColorDisplayItem, SolidColorDisplayItemClass, StackingContext};
use gfx::display_list::{TextDisplayItem, TextDisplayItemClass, Upright};
-use gfx::render_task::RenderLayer;
+use gfx::paint_task::RenderLayer;
use servo_msg::compositor_msg::{FixedPosition, Scrollable};
use servo_msg::constellation_msg::{ConstellationChan, FrameRectMsg};
use servo_net::image::holder::ImageHolder;
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()
}