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

Unified Diff: chrome/browser/gtk/browser_window_gtk.h

Issue 159019: Begin work on extension shelf for Linux. (Closed)
Patch Set: Created 11 years, 5 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
« no previous file with comments | « chrome/browser/extensions/extension_host.cc ('k') | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/browser_window_gtk.h
diff --git a/chrome/browser/gtk/browser_window_gtk.h b/chrome/browser/gtk/browser_window_gtk.h
index b15c9fcfb3557dbafd5c3b17eb7f34564d166e08..2040f92c2336b2fae3318dca8d5851680002d589 100644
--- a/chrome/browser/gtk/browser_window_gtk.h
+++ b/chrome/browser/gtk/browser_window_gtk.h
@@ -25,6 +25,7 @@ class BrowserTitlebar;
class BrowserToolbarGtk;
class CustomDrawButton;
class DownloadShelfGtk;
+class ExtensionShelfGtk;
class FindBarGtk;
class InfoBarContainerGtk;
class LocationBar;
@@ -179,6 +180,9 @@ class BrowserWindowGtk : public BrowserWindow,
// Show or hide the bookmark bar.
void MaybeShowBookmarkBar(TabContents* contents, bool animate);
+ // Show or hide the extension shelf.
+ void MaybeShowExtensionShelf();
+
// Sets the default size for the window and the the way the user is allowed to
// resize it.
void SetGeometryHints();
@@ -254,6 +258,7 @@ class BrowserWindowGtk : public BrowserWindow,
bool IsTabStripSupported();
bool IsToolbarSupported();
bool IsBookmarkBarSupported();
+ bool IsExtensionShelfSupported();
// Checks to see if the mouse pointer at |x|, |y| is over the border of the
// custom frame (a spot that should trigger a window resize). Returns true if
@@ -278,6 +283,9 @@ class BrowserWindowGtk : public BrowserWindow,
// The object that manages the bookmark bar.
scoped_ptr<BookmarkBarGtk> bookmark_bar_;
+ // The object that manages the extension shelf.
+ scoped_ptr<ExtensionShelfGtk> extension_shelf_;
+
// The status bubble manager. Always non-NULL.
scoped_ptr<StatusBubbleGtk> status_bubble_;
« no previous file with comments | « chrome/browser/extensions/extension_host.cc ('k') | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698