Index: chrome/browser/ui/views/location_bar/ev_bubble_view.cc |
diff --git a/chrome/browser/ui/views/location_bar/ev_bubble_view.cc b/chrome/browser/ui/views/location_bar/ev_bubble_view.cc |
index 577210a96821fbe626485d9eb74b1e3f61a78596..02288d7f38428a7d71678b9a48316a35fb2f16e7 100644 |
--- a/chrome/browser/ui/views/location_bar/ev_bubble_view.cc |
+++ b/chrome/browser/ui/views/location_bar/ev_bubble_view.cc |
@@ -22,8 +22,6 @@ bool EVBubbleView::OnMousePressed(const views::MouseEvent& event) { |
return true; |
} |
-void EVBubbleView::OnMouseReleased(const views::MouseEvent& event, |
- bool canceled) { |
- click_handler_.OnMouseReleased(event, canceled); |
+void EVBubbleView::OnMouseReleased(const views::MouseEvent& event) { |
+ click_handler_.OnMouseReleased(event); |
} |
- |