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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc

Issue 1302233006: aura: Stop converting Rect to RectF implicitly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rectfconvert-aura: . Created 5 years, 4 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/autofill/autofill_dialog_controller_impl.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
index 348e085169026ebf6f3a03a35b1ee761f86606ac..9553ad55f97d8bd8bf0e8aa38507381a3d4b30cd 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
@@ -1212,13 +1212,10 @@ void AutofillDialogControllerImpl::UserEditedOrActivatedInput(
}
popup_controller_ = AutofillPopupControllerImpl::GetOrCreate(
- popup_controller_,
- weak_ptr_factory_.GetWeakPtr(),
- NULL,
- parent_view,
- content_bounds,
- base::i18n::IsRTL() ?
- base::i18n::RIGHT_TO_LEFT : base::i18n::LEFT_TO_RIGHT);
+ popup_controller_, weak_ptr_factory_.GetWeakPtr(), NULL, parent_view,
+ gfx::RectF(content_bounds),
+ base::i18n::IsRTL() ? base::i18n::RIGHT_TO_LEFT
+ : base::i18n::LEFT_TO_RIGHT);
popup_controller_->Show(popup_suggestions);
}
« no previous file with comments | « ash/rotator/screen_rotation_animator.cc ('k') | chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698