| 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 c12dfb1325000577bfc7f9d99132a16285f21d66..81ecae7fe91650429b824f14faf1bf74ff2896ac 100644
|
| --- a/chrome/browser/ui/views/toolbar_view.cc
|
| +++ b/chrome/browser/ui/views/toolbar_view.cc
|
| @@ -763,13 +763,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) {
|
|
|