diff options
author | bryeung@google.com <bryeung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 21:49:51 +0000 |
---|---|---|
committer | bryeung@google.com <bryeung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 21:49:51 +0000 |
commit | 192c08625449016b0a9f5ab9bb40e298c0bbd00f (patch) | |
tree | 7800184f094e1f83123b340fa114d13b9505f461 | |
parent | 7b7f43e1bfc8e1db98667f9e8a22b64b29354a3c (diff) | |
download | chromium_src-192c08625449016b0a9f5ab9bb40e298c0bbd00f.zip chromium_src-192c08625449016b0a9f5ab9bb40e298c0bbd00f.tar.gz chromium_src-192c08625449016b0a9f5ab9bb40e298c0bbd00f.tar.bz2 |
Remove an used function.
BUG=none
TEST=still compiles, passes try bots
Review URL: http://codereview.chromium.org/4405001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64968 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/views/frame/browser_view.cc | 6 | ||||
-rw-r--r-- | chrome/browser/views/frame/browser_view.h | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/chrome/browser/views/frame/browser_view.cc b/chrome/browser/views/frame/browser_view.cc index 6a8df4a..1baccf4 100644 --- a/chrome/browser/views/frame/browser_view.cc +++ b/chrome/browser/views/frame/browser_view.cc @@ -555,12 +555,6 @@ gfx::Rect BrowserView::GetClientAreaBounds() const { return container_bounds; } -bool BrowserView::ShouldFindBarBlendWithBookmarksBar() const { - if (bookmark_bar_view_.get()) - return bookmark_bar_view_->IsAlwaysShown(); - return false; -} - gfx::Rect BrowserView::GetFindBarBoundingBox() const { return GetBrowserViewLayout()->GetFindBarBoundingBox(); } diff --git a/chrome/browser/views/frame/browser_view.h b/chrome/browser/views/frame/browser_view.h index 32272ab..d113525 100644 --- a/chrome/browser/views/frame/browser_view.h +++ b/chrome/browser/views/frame/browser_view.h @@ -128,12 +128,6 @@ class BrowserView : public BrowserBubbleHost, // BrowserView's parent. gfx::Rect GetClientAreaBounds() const; - // Returns true if the Find Bar should be rendered such that it appears to - // blend with the Bookmarks Bar. False if it should appear to blend with the - // main Toolbar. The return value will vary depending on whether or not the - // Bookmark Bar is always shown. - bool ShouldFindBarBlendWithBookmarksBar() const; - // Returns the constraining bounding box that should be used to lay out the // FindBar within. This is _not_ the size of the find bar, just the bounding // box it should be laid out within. The coordinate system of the returned |