diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-01 00:26:18 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-01 00:26:18 +0000 |
commit | da5ff696c0007cdb6ded17a9d4fecf6d4294993e (patch) | |
tree | 278bc8929945622ea13b26a1d9939d460721b949 /chrome/browser/browser_window.h | |
parent | 1ca6df9ae9d23bffa27bb1f5fd19a79a6621939a (diff) | |
download | chromium_src-da5ff696c0007cdb6ded17a9d4fecf6d4294993e.zip chromium_src-da5ff696c0007cdb6ded17a9d4fecf6d4294993e.tar.gz chromium_src-da5ff696c0007cdb6ded17a9d4fecf6d4294993e.tar.bz2 |
Move the BookmarkBarView into the frames.
Yes this causes duplicate code, but only for a brief while until I can bring up BrowserView at which point this code will move from the frames to that object. "It gets worse before it gets better".
B=1031854
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213 0039d316-1c4b-4281-b951-d872f2087c98
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; |