mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Remove unused PrivilegedPipelineContent::constellation_chan.
This commit is contained in:
parent
5e7306bf19
commit
6eff8d6c32
1 changed files with 1 additions and 3 deletions
|
@ -199,7 +199,7 @@ impl Pipeline {
|
||||||
let unprivileged_pipeline_content = UnprivilegedPipelineContent {
|
let unprivileged_pipeline_content = UnprivilegedPipelineContent {
|
||||||
id: state.id,
|
id: state.id,
|
||||||
parent_info: state.parent_info,
|
parent_info: state.parent_info,
|
||||||
constellation_chan: state.constellation_chan.clone(),
|
constellation_chan: state.constellation_chan,
|
||||||
scheduler_chan: state.scheduler_chan,
|
scheduler_chan: state.scheduler_chan,
|
||||||
devtools_chan: script_to_devtools_chan,
|
devtools_chan: script_to_devtools_chan,
|
||||||
image_cache_task: state.image_cache_task,
|
image_cache_task: state.image_cache_task,
|
||||||
|
@ -228,7 +228,6 @@ impl Pipeline {
|
||||||
|
|
||||||
let privileged_pipeline_content = PrivilegedPipelineContent {
|
let privileged_pipeline_content = PrivilegedPipelineContent {
|
||||||
id: state.id,
|
id: state.id,
|
||||||
constellation_chan: state.constellation_chan,
|
|
||||||
painter_chan: state.painter_chan,
|
painter_chan: state.painter_chan,
|
||||||
compositor_proxy: state.compositor_proxy,
|
compositor_proxy: state.compositor_proxy,
|
||||||
font_cache_task: state.font_cache_task,
|
font_cache_task: state.font_cache_task,
|
||||||
|
@ -432,7 +431,6 @@ impl UnprivilegedPipelineContent {
|
||||||
|
|
||||||
pub struct PrivilegedPipelineContent {
|
pub struct PrivilegedPipelineContent {
|
||||||
id: PipelineId,
|
id: PipelineId,
|
||||||
constellation_chan: ConstellationChan<ConstellationMsg>,
|
|
||||||
painter_chan: ConstellationChan<PaintMsg>,
|
painter_chan: ConstellationChan<PaintMsg>,
|
||||||
compositor_proxy: Box<CompositorProxy + Send + 'static>,
|
compositor_proxy: Box<CompositorProxy + Send + 'static>,
|
||||||
script_to_compositor_port: Option<IpcReceiver<ScriptToCompositorMsg>>,
|
script_to_compositor_port: Option<IpcReceiver<ScriptToCompositorMsg>>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue