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

Unified Diff: chrome/browser/ui/views/browser_dialogs.h

Issue 10494004: Implements a zoom icon in the Omnibox for Views. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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/views/browser_dialogs.h
diff --git a/chrome/browser/ui/views/browser_dialogs.h b/chrome/browser/ui/views/browser_dialogs.h
index f17837110e0c4d16ffa7cb4a368832775264d04c..349a310849fe1f13218cee4bb0d8137205f57211 100644
--- a/chrome/browser/ui/views/browser_dialogs.h
+++ b/chrome/browser/ui/views/browser_dialogs.h
@@ -53,6 +53,13 @@ void ShowBookmarkBubbleView(views::View* anchor_view,
void HideBookmarkBubbleView();
bool IsBookmarkBubbleViewShowing();
+// Shows or hides the zoom bubble anchored to the supplied view.
+void ShowZoomBubbleView(views::View* anchor_view,
+ int zoomPercent,
Ben Goodger (Google) 2012/06/04 15:16:49 zoom_percent
Kyle Horimoto 2012/06/05 05:03:59 Done.
+ bool autoclose);
Ben Goodger (Google) 2012/06/04 15:16:49 document autoclose. also, call it auto_close
Kyle Horimoto 2012/06/05 05:03:59 Done.
+void HideZoomBubbleView();
+bool IsZoomBubbleViewShowing();
+
// Shows or hides the Chrome To Mobile bubble anchored to the supplied view.
void ShowChromeToMobileBubbleView(views::View* anchor_view, Profile* profile);
void HideChromeToMobileBubbleView();

Powered by Google App Engine
This is Rietveld 408576698