| Index: ash/shelf/shelf_tooltip_manager.cc
|
| diff --git a/ash/shelf/shelf_tooltip_manager.cc b/ash/shelf/shelf_tooltip_manager.cc
|
| index 2aa93fde3d6b1869366ae4969f557c9c1b924ab7..8fb9d9b892733dc88fe00bf0384cea345d69b0c1 100644
|
| --- a/ash/shelf/shelf_tooltip_manager.cc
|
| +++ b/ash/shelf/shelf_tooltip_manager.cc
|
| @@ -173,14 +173,14 @@ void ShelfTooltipManager::ShowTooltipWithDelay(views::View* view) {
|
| }
|
| }
|
|
|
| -void ShelfTooltipManager::OnMousePressed(const ui::MouseEvent& event,
|
| - const gfx::Point& location_in_screen) {
|
| +void ShelfTooltipManager::OnMousePressed(const gfx::Point& location_in_screen,
|
| + views::Widget* target) {
|
| // Close on any mouse press events inside or outside the tooltip.
|
| Close();
|
| }
|
|
|
| -void ShelfTooltipManager::OnTouchPressed(const ui::TouchEvent& event,
|
| - const gfx::Point& location_in_screen) {
|
| +void ShelfTooltipManager::OnTouchPressed(const gfx::Point& location_in_screen,
|
| + views::Widget* target) {
|
| // Close on any touch press events inside or outside the tooltip.
|
| Close();
|
| }
|
|
|