summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser.h
diff options
context:
space:
mode:
authorbeng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-01 00:26:18 +0000
committerbeng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-01 00:26:18 +0000
commitda5ff696c0007cdb6ded17a9d4fecf6d4294993e (patch)
tree278bc8929945622ea13b26a1d9939d460721b949 /chrome/browser/browser.h
parent1ca6df9ae9d23bffa27bb1f5fd19a79a6621939a (diff)
downloadchromium_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.h')
-rw-r--r--chrome/browser/browser.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index 80a9824..ba4133e 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -47,7 +47,6 @@
#include "chrome/common/notification_service.h"
#include "chrome/common/pref_member.h"
-class BookmarkBarView;
class BrowserWindow;
class GoButton;
class LocationBarView;
@@ -335,9 +334,6 @@ class Browser : public TabStripModelDelegate,
// point and for the provided hwnd.
void RunSimpleFrameMenu(const CPoint& pt, HWND hwnd);
- // Returns the bookmark bar view, creating if NULL.
- BookmarkBarView* GetBookmarkBarView();
-
// Show some native UI given a URL. If a tab with the same URL is already
// visible in this browser, it becomes selected. Otherwise a new tab is
// created.
@@ -600,9 +596,6 @@ class Browser : public TabStripModelDelegate,
// This browser type.
BrowserType::Type type_;
- // The bookmark bar. This is lazily created.
- scoped_ptr<BookmarkBarView> bookmark_bar_view_;
-
// Lists all UI updates that are pending. We don't update things like the
// URL or tab title right away to avoid flickering and extra painting.
// See ScheduleUIUpdate and ProcessPendingUIUpdates.