Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(584)

Unified Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 19115003: Make the maximize button more easily hittable when there is a huge amount of tabs present (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed completely Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/frame/browser_view.h
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index c8599b1075717bcd95a020976736267b6a31ac5e..104132535bbcc5b016149a1308f473177c6136b1 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -234,10 +234,6 @@ class BrowserView : public BrowserWindow,
return browser_->is_type_tabbed();
}
- // Returns true if the specified point(BrowserView coordinates) is in
- // in the window caption area of the browser window.
- bool IsPositionInWindowCaption(const gfx::Point& point);
-
// See ImmersiveModeController for description.
ImmersiveModeController* immersive_mode_controller() const {
return immersive_mode_controller_.get();
@@ -435,7 +431,7 @@ class BrowserView : public BrowserWindow,
// Overridden from views::ClientView:
virtual bool CanClose() OVERRIDE;
- virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
+ virtual int NonClientHitTest(const gfx::Point& point) const OVERRIDE;
virtual gfx::Size GetMinimumSize() OVERRIDE;
// ImmersiveModeController::Delegate overrides:

Powered by Google App Engine
This is Rietveld 408576698