Auto merge of #17784 - omakk:master, r=jdm

constellation: Remove unused title attribute from Pipeline struct

<!-- Please describe your changes on the following line: -->
Removes title attribute from constellation::Pipeline since it is never used

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #15714

- [X] These changes do not require tests because it's a very simple cleanup

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17784)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-07-19 08:20:35 -07:00 committed by GitHub
commit 4b69665beb

View file

@ -75,9 +75,6 @@ pub struct Pipeline {
/// to a hash URL. /// to a hash URL.
pub url: ServoUrl, pub url: ServoUrl,
/// The title of the most recently-loaded page.
pub title: Option<String>,
/// Whether this pipeline is currently running animations. Pipelines that are running /// Whether this pipeline is currently running animations. Pipelines that are running
/// animations cause composites to be continually scheduled. /// animations cause composites to be continually scheduled.
pub running_animations: bool, pub running_animations: bool,
@ -316,7 +313,6 @@ impl Pipeline {
layout_chan: layout_chan, layout_chan: layout_chan,
compositor_proxy: compositor_proxy, compositor_proxy: compositor_proxy,
url: url, url: url,
title: None,
children: vec!(), children: vec!(),
running_animations: false, running_animations: false,
visible: visible, visible: visible,