diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-09 21:33:13 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-09 21:33:13 +0000 |
commit | 4f30d5cc3ba59084ed1a47729be48edfd0fd669b (patch) | |
tree | 4515c97eeb9996c6b2c30e152262bda93015465a /chrome/browser/browser_window.h | |
parent | bdb5267835bee24d3550e1aae9bdefa9cb885e49 (diff) | |
download | chromium_src-4f30d5cc3ba59084ed1a47729be48edfd0fd669b.zip chromium_src-4f30d5cc3ba59084ed1a47729be48edfd0fd669b.tar.gz chromium_src-4f30d5cc3ba59084ed1a47729be48edfd0fd669b.tar.bz2 |
Reverting 9408.
Review URL: http://codereview.chromium.org/20190
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9414 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index 2809d2e..1b382ae 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -83,7 +83,7 @@ class BrowserWindow { // TODO(beng): REMOVE? // Returns true if the frame is maximized (aka zoomed). - virtual bool IsMaximized() const = 0; + virtual bool IsMaximized() = 0; // Returns the location bar. virtual LocationBar* GetLocationBar() const = 0; @@ -102,12 +102,6 @@ class BrowserWindow { // Returns whether the bookmark bar is visible or not. virtual bool IsBookmarkBarVisible() const = 0; - // Returns the rect where the resize corner should be drawn by the render - // widget host view (on top of what the renderer returns). We return an empty - // rect to identify that there shouldn't be a resize corner (in the cases - // where we take care of it ourselves at the browser level). - virtual gfx::Rect GetRootWindowResizerRect() const = 0; - // Shows or hides the bookmark bar depending on its current visibility. virtual void ToggleBookmarkBar() = 0; @@ -132,7 +126,7 @@ class BrowserWindow { // Shows the Import Bookmarks & Settings dialog box. virtual void ShowImportDialog() = 0; - + // Shows the Search Engines dialog box. virtual void ShowSearchEnginesDialog() = 0; |