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

Unified Diff: chrome/browser/ui/views/toolbar_view.cc

Issue 10827198: Change View::HitTest to View::HitTestRect (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Revised patch with tests added Created 8 years, 4 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/toolbar_view.cc
diff --git a/chrome/browser/ui/views/toolbar_view.cc b/chrome/browser/ui/views/toolbar_view.cc
index 4f6a1ecd8c2356678497b24bfab4b90b5b1f43cb..f27f0efbceb12d16a178ab883f8d07864182b6cf 100644
--- a/chrome/browser/ui/views/toolbar_view.cc
+++ b/chrome/browser/ui/views/toolbar_view.cc
@@ -762,13 +762,13 @@ void ToolbarView::Layout() {
app_menu_width, child_height);
}
-bool ToolbarView::HitTest(const gfx::Point& point) const {
+bool ToolbarView::HitTestRect(const gfx::Rect& rect) const {
// Don't take hits in our top shadow edge. Let them fall through to the
// tab strip above us.
- if (point.y() < kContentShadowHeight)
+ if (rect.y() < kContentShadowHeight)
return false;
// Otherwise let our superclass take care of it.
- return AccessiblePaneView::HitTest(point);
+ return AccessiblePaneView::HitTestRect(rect);
}
void ToolbarView::OnPaint(gfx::Canvas* canvas) {

Powered by Google App Engine
This is Rietveld 408576698