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

Unified Diff: chrome/browser/ui/views/autofill/decorated_textfield.cc

Issue 265713007: views: Update event-related API to use PointF/RectF instead of Point/Rect. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/autofill/decorated_textfield.cc
diff --git a/chrome/browser/ui/views/autofill/decorated_textfield.cc b/chrome/browser/ui/views/autofill/decorated_textfield.cc
index c25cc0f094c8bcf9fd44bd616e70c5a9d01c73cd..63f52e2eed413c74f97a99157c168f0dadba7088 100644
--- a/chrome/browser/ui/views/autofill/decorated_textfield.cc
+++ b/chrome/browser/ui/views/autofill/decorated_textfield.cc
@@ -99,7 +99,8 @@ const char* DecoratedTextfield::GetClassName() const {
return kViewClassName;
}
-views::View* DecoratedTextfield::GetEventHandlerForRect(const gfx::Rect& rect) {
+views::View* DecoratedTextfield::GetEventHandlerForRect(
+ const gfx::RectF& rect) {
views::View* handler = views::Textfield::GetEventHandlerForRect(rect);
if (handler->GetClassName() == TooltipIcon::kViewClassName)
return handler;

Powered by Google App Engine
This is Rietveld 408576698