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

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

Issue 139983009: ui::LocatedEvent location() returns gfx::PointF (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Undo accidental change. Created 6 years, 8 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/content_setting_image_view.cc
diff --git a/chrome/browser/ui/views/location_bar/content_setting_image_view.cc b/chrome/browser/ui/views/location_bar/content_setting_image_view.cc
index 1f344523e51b07d6a1383d078bedd7238bfc8da3..c19483e4457706504865d2e77986857bb3f2f939 100644
--- a/chrome/browser/ui/views/location_bar/content_setting_image_view.cc
+++ b/chrome/browser/ui/views/location_bar/content_setting_image_view.cc
@@ -194,7 +194,7 @@ bool ContentSettingImageView::OnMousePressed(const ui::MouseEvent& event) {
}
void ContentSettingImageView::OnMouseReleased(const ui::MouseEvent& event) {
- if (HitTestPoint(event.location()))
+ if (HitTestPoint(gfx::ToFlooredPoint(event.location())))
OnClick();
}

Powered by Google App Engine
This is Rietveld 408576698