aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/pipeline.rs
diff options
context:
space:
mode:
authorTim Kuehn <tkuehn@cmu.edu>2013-06-27 17:14:56 -0700
committerTim Kuehn <tkuehn@cmu.edu>2013-07-01 11:03:31 -0700
commitd17a1f2ad731f45286613d5651ce070cbc9bd286 (patch)
tree5f90fad8e3a99873856092f52a7320d74161c9b8 /src/components/main/pipeline.rs
parentfba7ec423c99a63bdcbe16029740e7ab4e38c088 (diff)
downloadservo-d17a1f2ad731f45286613d5651ce070cbc9bd286.tar.gz
servo-d17a1f2ad731f45286613d5651ce070cbc9bd286.zip
rename engine --> constellation
Diffstat (limited to 'src/components/main/pipeline.rs')
-rw-r--r--src/components/main/pipeline.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/main/pipeline.rs b/src/components/main/pipeline.rs
index 95a247cca3b..0a801d7d577 100644
--- a/src/components/main/pipeline.rs
+++ b/src/components/main/pipeline.rs
@@ -9,7 +9,7 @@ use gfx::opts::Opts;
use layout::layout_task::LayoutTask;
use script::layout_interface::LayoutChan;
use script::layout_interface;
-use servo_msg::engine::{EngineChan};
+use servo_msg::constellation::{ConstellationChan};
use script::script_task::{ScriptTask, ScriptChan, ScriptMsg};
use script::script_task;
use servo_net::image_cache_task::ImageCacheTask;
@@ -28,7 +28,7 @@ pub struct Pipeline {
impl Pipeline {
/// Starts a render task, layout task, and script task. Returns the channels wrapped in a struct.
pub fn create(id: uint,
- engine_chan: EngineChan,
+ constellation_chan: ConstellationChan,
compositor_chan: CompositorChan,
image_cache_task: ImageCacheTask,
resource_task: ResourceTask,
@@ -55,7 +55,7 @@ impl Pipeline {
RenderTask::create(render_port,
compositor_chan.clone(),
copy opts,
- engine_chan.clone(),
+ constellation_chan.clone(),
profiler_chan.clone());
LayoutTask::create(layout_port,
@@ -70,7 +70,7 @@ impl Pipeline {
layout_chan.clone(),
script_port,
script_chan.clone(),
- engine_chan,
+ constellation_chan,
resource_task.clone(),
image_cache_task.clone());