diff options
author | Hayden Faulds <fauldsh@gmail.com> | 2015-11-12 13:15:17 +0000 |
---|---|---|
committer | Hayden Faulds <fauldsh@gmail.com> | 2015-11-12 13:15:17 +0000 |
commit | 5e7bf9cd9c1c781fd107af37f8a8b6cf9742dbc8 (patch) | |
tree | 4029a0164c4a0f178ce678389c4cab43f0ae91fc /components/layout/layout_task.rs | |
parent | 66b85fe4fca7b12846632faf8b1055bf1e3c8fd1 (diff) | |
download | servo-5e7bf9cd9c1c781fd107af37f8a8b6cf9742dbc8.tar.gz servo-5e7bf9cd9c1c781fd107af37f8a8b6cf9742dbc8.zip |
remove chan from layout task
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index 66ac6da25a1..2f6ab9d5167 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -148,9 +148,6 @@ pub struct LayoutTask { /// The channel on which the font cache can send messages to us. font_cache_sender: Sender<()>, - /// The channel on which we or others can send messages to ourselves. - chan: LayoutChan, - /// The channel on which messages can be sent to the constellation. constellation_chan: ConstellationChan, @@ -249,7 +246,6 @@ impl LayoutTaskFactory for LayoutTask { url, is_iframe, chan.receiver(), - layout_chan.clone(), pipeline_port, constellation_chan, script_chan, @@ -358,7 +354,6 @@ impl LayoutTask { url: Url, is_iframe: bool, port: Receiver<Msg>, - chan: LayoutChan, pipeline_port: IpcReceiver<LayoutControlMsg>, constellation_chan: ConstellationChan, script_chan: Sender<ConstellationControlMsg>, @@ -408,7 +403,6 @@ impl LayoutTask { is_iframe: is_iframe, port: port, pipeline_port: pipeline_receiver, - chan: chan, script_chan: script_chan, constellation_chan: constellation_chan.clone(), paint_chan: paint_chan, |