| Index: chrome/browser/ui/views/location_bar/click_handler.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/click_handler.cc b/chrome/browser/ui/views/location_bar/click_handler.cc
|
| index 8833998ed05f4fe547016fed52a084b9f8faa540..87b5bfc397c3d229a6df543f6ae5e735d2053e0d 100644
|
| --- a/chrome/browser/ui/views/location_bar/click_handler.cc
|
| +++ b/chrome/browser/ui/views/location_bar/click_handler.cc
|
| @@ -16,9 +16,8 @@ ClickHandler::ClickHandler(const views::View* owner,
|
| location_bar_(location_bar) {
|
| }
|
|
|
| -void ClickHandler::OnMouseReleased(const views::MouseEvent& event,
|
| - bool canceled) {
|
| - if (canceled || !owner_->HitTest(event.location()))
|
| +void ClickHandler::OnMouseReleased(const views::MouseEvent& event) {
|
| + if (!owner_->HitTest(event.location()))
|
| return;
|
|
|
| // Do not show page info if the user has been editing the location
|
| @@ -34,4 +33,3 @@ void ClickHandler::OnMouseReleased(const views::MouseEvent& event,
|
| }
|
| tab->ShowPageInfo(nav_entry->url(), nav_entry->ssl(), true);
|
| }
|
| -
|
|
|