From 31aabeaf4710b3675297a5a989acbd80e3ee4ae3 Mon Sep 17 00:00:00 2001 From: Omar Akkila Date: Wed, 19 Jul 2017 16:11:43 +0400 Subject: [PATCH] constellation: Remove unused title attribute from Pipeline struct (#15714) --- components/constellation/pipeline.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index dd99446bd34..919c6203fa7 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -75,9 +75,6 @@ pub struct Pipeline { /// to a hash URL. pub url: ServoUrl, - /// The title of the most recently-loaded page. - pub title: Option, - /// Whether this pipeline is currently running animations. Pipelines that are running /// animations cause composites to be continually scheduled. pub running_animations: bool, @@ -316,7 +313,6 @@ impl Pipeline { layout_chan: layout_chan, compositor_proxy: compositor_proxy, url: url, - title: None, children: vec!(), running_animations: false, visible: visible,