summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/bookmark_bar_gtk.h
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 21:15:44 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 21:15:44 +0000
commit976c0994ebdf37d650fb1c9788d24ef07470937a (patch)
tree0a9080b504f42cdc194c42aa741057257b5302fd /chrome/browser/gtk/bookmark_bar_gtk.h
parent6719905012bf5bd3cbac84f4b833a2a301250cb0 (diff)
downloadchromium_src-976c0994ebdf37d650fb1c9788d24ef07470937a.zip
chromium_src-976c0994ebdf37d650fb1c9788d24ef07470937a.tar.gz
chromium_src-976c0994ebdf37d650fb1c9788d24ef07470937a.tar.bz2
Fix themed toolbar drawing following tabstrip changes.
The code should also be more robust to future changes. BUG=none TEST=active tab blends into toolbar Review URL: http://codereview.chromium.org/126013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18319 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/bookmark_bar_gtk.h')
-rw-r--r--chrome/browser/gtk/bookmark_bar_gtk.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/gtk/bookmark_bar_gtk.h b/chrome/browser/gtk/bookmark_bar_gtk.h
index 66bf3e0..f0b2d06 100644
--- a/chrome/browser/gtk/bookmark_bar_gtk.h
+++ b/chrome/browser/gtk/bookmark_bar_gtk.h
@@ -17,6 +17,7 @@
class BookmarkContextMenu;
class BookmarkMenuController;
class Browser;
+class BrowserWindowGtk;
class CustomContainerButton;
class NineBox;
class PageNavigator;
@@ -25,7 +26,8 @@ class Profile;
class BookmarkBarGtk : public AnimationDelegate,
public BookmarkModelObserver {
public:
- explicit BookmarkBarGtk(Profile* profile, Browser* browser);
+ explicit BookmarkBarGtk(Profile* profile, Browser* browser,
+ BrowserWindowGtk* window);
virtual ~BookmarkBarGtk();
// Resets the profile. This removes any buttons for the current profile and
@@ -195,6 +197,7 @@ class BookmarkBarGtk : public AnimationDelegate,
PageNavigator* page_navigator_;
Browser* browser_;
+ BrowserWindowGtk* window_;
// Model providing details as to the starred entries/groups that should be
// shown. This is owned by the Profile.