Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8619)

Unified Diff: chrome/browser/ui/views/location_bar/location_icon_view.cc

Issue 6685069: Disambiguate OnMouseCaptureLost from OnMouseReleased, etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments, fix tests, cleanup, etc. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 328537dfe8fca5968a271a1be5c59f1e6f9fa769..2846337f3b88af2b25f4fab5dd3b6f602e7d1671 100644
--- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
+++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
@@ -23,9 +23,8 @@ bool LocationIconView::OnMousePressed(const views::MouseEvent& event) {
return true;
}
-void LocationIconView::OnMouseReleased(const views::MouseEvent& event,
- bool canceled) {
- click_handler_.OnMouseReleased(event, canceled);
+void LocationIconView::OnMouseReleased(const views::MouseEvent& event) {
+ click_handler_.OnMouseReleased(event);
}
void LocationIconView::ShowTooltip(bool show) {

Powered by Google App Engine
This is Rietveld 408576698