summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/browser_toolbar_gtk.h
diff options
context:
space:
mode:
authorrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-12 02:17:02 +0000
committerrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-12 02:17:02 +0000
commit9bfc63e0edac4526a7f08618b63284f00d5156f7 (patch)
tree1a9ebd8da5b0296f35c01648e3c91b3057e8ac66 /chrome/browser/gtk/browser_toolbar_gtk.h
parentc2087f544ab913685e8a90ea377ec93f736bff2f (diff)
downloadchromium_src-9bfc63e0edac4526a7f08618b63284f00d5156f7.zip
chromium_src-9bfc63e0edac4526a7f08618b63284f00d5156f7.tar.gz
chromium_src-9bfc63e0edac4526a7f08618b63284f00d5156f7.tar.bz2
Implement Linux/GTK ExtensionInstalledBubble
BUG=26973 TEST=Install a packaged extension. Verify the InfoBubble is shown, with the install icon and some description. The InfoBubble should disappear when the bubble looses focus (click elsewhere). For a browserAction, the bubble should point to the browserAction icon. For a pageAction **that has a "default_icon" set in it's manifest (see the samples/subscribe_page_action in this CL)**, it should point to a temporarily shown pageAction icon that will be hidden when the bubble closes. Otherwise it should point to the wrench menu. Review URL: http://codereview.chromium.org/547010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/browser_toolbar_gtk.h')
-rw-r--r--chrome/browser/gtk/browser_toolbar_gtk.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/gtk/browser_toolbar_gtk.h b/chrome/browser/gtk/browser_toolbar_gtk.h
index 73ffd74..4088df2 100644
--- a/chrome/browser/gtk/browser_toolbar_gtk.h
+++ b/chrome/browser/gtk/browser_toolbar_gtk.h
@@ -73,6 +73,14 @@ class BrowserToolbarGtk : public CommandUpdater::CommandObserver,
GoButtonGtk* GetGoButton() { return go_.get(); }
+ GtkWidget* GetAppMenuButton() { return app_menu_button_.get(); }
+
+ BrowserActionsToolbarGtk* GetBrowserActionsToolbar() {
+ return actions_toolbar_.get();
+ }
+
+ LocationBarViewGtk* GetLocationBarView() { return location_bar_.get(); }
+
// We have to show padding on the bottom of the toolbar when the bookmark
// is in floating mode. Otherwise the bookmark bar will paint it for us.
void UpdateForBookmarkBarVisibility(bool show_bottom_padding);