aboutsummaryrefslogtreecommitdiffstats
path: root/components/servo/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-07-12 09:50:45 -0700
committerGitHub <noreply@github.com>2017-07-12 09:50:45 -0700
commitee47fe192511558f69d12036cc9cab5a009b8b25 (patch)
treefd7b49eb19dd457c0d1d7e2067bf831fe8606ea7 /components/servo/lib.rs
parent482caa2b724f347e2000d77429da132b9fc54111 (diff)
parent88686690e5be9b851a51cb6913067a868ef4951d (diff)
downloadservo-ee47fe192511558f69d12036cc9cab5a009b8b25.tar.gz
servo-ee47fe192511558f69d12036cc9cab5a009b8b25.zip
Auto merge of #17686 - paulrouget:rm_Title, r=jdm
remove the ability to request for the title If we offer the ability to request info like these, we need to expose a lot of other getters, like url, loading state, favicon, … It's up to the embedder to keep track of the state of a browser. So let's keep that consistent. <!-- Please describe your changes on the following line: --> --- <!-- 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/17686) <!-- Reviewable:end -->
Diffstat (limited to 'components/servo/lib.rs')
-rw-r--r--components/servo/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs
index f480e9157e9..25a2891046b 100644
--- a/components/servo/lib.rs
+++ b/components/servo/lib.rs
@@ -252,10 +252,6 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static {
self.compositor.pinch_zoom_level()
}
- pub fn request_title_for_main_frame(&self) {
- self.compositor.title_for_main_frame()
- }
-
pub fn setup_logging(&self) {
let constellation_chan = self.constellation_chan.clone();
log::set_logger(|max_log_level| {