diff options
Diffstat (limited to 'chrome/browser/views/accessible_toolbar_view.cc')
-rw-r--r-- | chrome/browser/views/accessible_toolbar_view.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/accessible_toolbar_view.cc b/chrome/browser/views/accessible_toolbar_view.cc index 3556fe7..d85648d0 100644 --- a/chrome/browser/views/accessible_toolbar_view.cc +++ b/chrome/browser/views/accessible_toolbar_view.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -90,10 +90,10 @@ void AccessibleToolbarView::WillLoseFocus() { } } -void AccessibleToolbarView::ShowContextMenu(int x, int y, +void AccessibleToolbarView::ShowContextMenu(const gfx::Point& p, bool is_mouse_gesture) { if (selected_focused_view_) - selected_focused_view_->ShowContextMenu(x, y, is_mouse_gesture); + selected_focused_view_->ShowContextMenu(p, is_mouse_gesture); } void AccessibleToolbarView::RequestFocus() { |