diff options
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index 4e06efd..713618a 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -36,6 +36,7 @@ #include "base/gfx/rect.h" #include "chrome/views/accelerator.h" +class BookmarkBarView; class BrowserList; namespace ChromeViews { class RootView; @@ -187,6 +188,9 @@ class BrowserWindow { // Returns the go button. virtual GoButton* GetGoButton() const = 0; + // Returns the Bookmark Bar view. + virtual BookmarkBarView* GetBookmarkBarView() = 0; + // Updates the toolbar with the state for the specified |contents|. virtual void Update(TabContents* contents, bool should_restore_state) = 0; |