Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7431)

Unified Diff: chrome/browser/ui/gtk/browser_window_gtk.cc

Issue 10444040: Tracks changes to zoom icon and zoom percentage. Notifies browser window if the icon should be chan… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changed delegate to observer Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/browser_window_gtk.cc
diff --git a/chrome/browser/ui/gtk/browser_window_gtk.cc b/chrome/browser/ui/gtk/browser_window_gtk.cc
index 643bc5baa05bcb016ba7e4d7e3b8c1f1e26e7101..c092b85bdaf95ee2e31accd4a982a76829939a15 100644
--- a/chrome/browser/ui/gtk/browser_window_gtk.cc
+++ b/chrome/browser/ui/gtk/browser_window_gtk.cc
@@ -886,6 +886,18 @@ void BrowserWindowGtk::SetStarredState(bool is_starred) {
toolbar_->GetLocationBarView()->SetStarred(is_starred);
}
+void BrowserWindowGtk::SetZoomIconState(ZoomController::ZoomIconState state) {
+ // TODO(khorimoto): Implement this.
+}
+
+void BrowserWindowGtk::SetZoomIconTooltipPercent(int zoom_percent) {
+ // TODO(khorimoto): Implement this.
+}
+
+void BrowserWindowGtk::ShowZoomBubble(int zoomPercent) {
tfarina 2012/06/01 00:47:53 nit: zoom_percent
Kyle Horimoto 2012/06/01 18:04:50 Done.
+ // TODO(khorimoto): Implement this.
+}
+
gfx::Rect BrowserWindowGtk::GetRestoredBounds() const {
return restored_bounds_;
}

Powered by Google App Engine
This is Rietveld 408576698