| 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 e9b4fdaf9daec4a51a8956fd295147d6f527df20..d4986c55cdac1577b70ff0459cb98710b071878a 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
|
| @@ -27,12 +27,11 @@ void LocationIconView::OnMouseReleased(const ui::MouseEvent& event) {
|
| page_info_helper_.ProcessEvent(event);
|
| }
|
|
|
| -ui::EventResult LocationIconView::OnGestureEvent(ui::GestureEvent* event) {
|
| +void LocationIconView::OnGestureEvent(ui::GestureEvent* event) {
|
| if (event->type() == ui::ET_GESTURE_TAP) {
|
| page_info_helper_.ProcessEvent(*event);
|
| - return ui::ER_CONSUMED;
|
| + event->SetHandled();
|
| }
|
| - return ui::ER_UNHANDLED;
|
| }
|
|
|
| int LocationIconView::GetBuiltInHorizontalPadding() const {
|
|
|