| Index: ash/tooltips/tooltip_controller.cc
|
| diff --git a/ash/tooltips/tooltip_controller.cc b/ash/tooltips/tooltip_controller.cc
|
| index 871949687d250ef5374780798b42aacd619bc74b..aa0290ea6718fdc6902952eef51c13d7ae104cf6 100644
|
| --- a/ash/tooltips/tooltip_controller.cc
|
| +++ b/ash/tooltips/tooltip_controller.cc
|
| @@ -301,7 +301,7 @@ bool TooltipController::PreHandleMouseEvent(aura::Window* target,
|
| return false;
|
| }
|
|
|
| -ui::TouchStatus TooltipController::PreHandleTouchEvent(
|
| +ui::EventResult TooltipController::PreHandleTouchEvent(
|
| aura::Window* target,
|
| ui::TouchEvent* event) {
|
| // TODO(varunjain): need to properly implement tooltips for
|
| @@ -312,7 +312,7 @@ ui::TouchStatus TooltipController::PreHandleTouchEvent(
|
| if (tooltip_window_)
|
| tooltip_window_->RemoveObserver(this);
|
| tooltip_window_ = NULL;
|
| - return ui::TOUCH_STATUS_UNKNOWN;
|
| + return ui::ER_UNHANDLED;
|
| }
|
|
|
| ui::EventResult TooltipController::PreHandleGestureEvent(
|
|
|