aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/pipeline.rs
diff options
context:
space:
mode:
authorEric Atkinson <eatkinson@mozilla.com>2013-08-12 10:19:59 -0700
committerEric Atkinson <eatkinson@mozilla.com>2013-08-20 11:29:39 -0700
commiteb58e4f5d1c1983db2957248f20fa2f120bbbc68 (patch)
treede879c0eed5b22f3cf70994fb39bbc1f05de0b1c /src/components/main/pipeline.rs
parente4bfad144edd3fcd491aeb6df14a864ecf6159d2 (diff)
downloadservo-eb58e4f5d1c1983db2957248f20fa2f120bbbc68.tar.gz
servo-eb58e4f5d1c1983db2957248f20fa2f120bbbc68.zip
Remove extraneous references to flow tree objects.
Diffstat (limited to 'src/components/main/pipeline.rs')
-rw-r--r--src/components/main/pipeline.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/main/pipeline.rs b/src/components/main/pipeline.rs
index 33e70ed6ebf..0204748c20b 100644
--- a/src/components/main/pipeline.rs
+++ b/src/components/main/pipeline.rs
@@ -12,6 +12,7 @@ use layout::layout_task::LayoutTask;
use script::layout_interface::LayoutChan;
use script::script_task::{ExecuteMsg, LoadMsg};
use servo_msg::constellation_msg::{ConstellationChan, PipelineId, SubpageId};
+use script::dom::node::AbstractNode;
use script::script_task::{AttachLayoutMsg, NewLayoutInfo, ScriptTask, ScriptChan};
use script::script_task;
use servo_net::image_cache_task::ImageCacheTask;
@@ -28,7 +29,7 @@ pub struct Pipeline {
subpage_id: Option<SubpageId>,
script_chan: ScriptChan,
layout_chan: LayoutChan,
- render_chan: RenderChan,
+ render_chan: RenderChan<AbstractNode<()>>,
/// The most recently loaded url
url: Option<Url>,
}
@@ -130,7 +131,7 @@ impl Pipeline {
subpage_id: Option<SubpageId>,
script_chan: ScriptChan,
layout_chan: LayoutChan,
- render_chan: RenderChan)
+ render_chan: RenderChan<AbstractNode<()>>)
-> Pipeline {
Pipeline {
id: id,