diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-09 13:41:10 -0700 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-15 13:55:40 -0700 |
commit | ffe60ea02704c0bd4545a194bff3f2feafd0133c (patch) | |
tree | 97f40c907aae08235e4bc856681cd1eb6df5a274 /src/components/main/pipeline.rs | |
parent | 907d9f23cf8ab5be112376199c3c57ba9e4a3035 (diff) | |
download | servo-ffe60ea02704c0bd4545a194bff3f2feafd0133c.tar.gz servo-ffe60ea02704c0bd4545a194bff3f2feafd0133c.zip |
Trait changes, and eliminate 'copy'
Diffstat (limited to 'src/components/main/pipeline.rs')
-rw-r--r-- | src/components/main/pipeline.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/main/pipeline.rs b/src/components/main/pipeline.rs index 1ea7965b02a..ef33125efeb 100644 --- a/src/components/main/pipeline.rs +++ b/src/components/main/pipeline.rs @@ -52,7 +52,7 @@ impl Pipeline { RenderTask::create(id, render_port, compositor_chan.clone(), - copy opts, + opts.clone(), profiler_chan.clone()); LayoutTask::create(id, @@ -61,7 +61,7 @@ impl Pipeline { script_pipeline.script_chan.clone(), render_chan.clone(), image_cache_task.clone(), - copy opts, + opts.clone(), profiler_chan); let new_layout_info = NewLayoutInfo { @@ -109,7 +109,7 @@ impl Pipeline { RenderTask::create(id, render_port, compositor_chan.clone(), - copy opts, + opts.clone(), profiler_chan.clone()); LayoutTask::create(id, @@ -118,7 +118,7 @@ impl Pipeline { script_chan.clone(), render_chan.clone(), image_cache_task, - copy opts, + opts.clone(), profiler_chan); Pipeline::new(id, subpage_id, |