| Index: chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_icon_view.cc b/chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| index 3df46fe9153350e75e75083121655a5e9826b2a7..79e4ea09df807abc63887b69ee67e1c755d0247c 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| @@ -27,13 +27,13 @@ void LocationIconView::OnMouseReleased(const ui::MouseEvent& event) {
|
| page_info_helper_.ProcessEvent(event);
|
| }
|
|
|
| -ui::GestureStatus LocationIconView::OnGestureEvent(
|
| +ui::EventResult LocationIconView::OnGestureEvent(
|
| const ui::GestureEvent& event) {
|
| if (event.type() == ui::ET_GESTURE_TAP) {
|
| page_info_helper_.ProcessEvent(event);
|
| - return ui::GESTURE_STATUS_CONSUMED;
|
| + return ui::ER_CONSUMED;
|
| }
|
| - return ui::GESTURE_STATUS_UNKNOWN;
|
| + return ui::ER_UNHANDLED;
|
| }
|
|
|
| int LocationIconView::GetBuiltInHorizontalPadding() const {
|
|
|