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

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

Issue 1151263002: Fix positioning of autofill popup on rtl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/test_popup_controller_common.cc
diff --git a/chrome/browser/ui/autofill/test_popup_controller_common.cc b/chrome/browser/ui/autofill/test_popup_controller_common.cc
index 5f83919c07955ca7f6b4213b0762771baa7973e6..fcbe2478033eb8e69c81fcd50f05886c16725f0d 100644
--- a/chrome/browser/ui/autofill/test_popup_controller_common.cc
+++ b/chrome/browser/ui/autofill/test_popup_controller_common.cc
@@ -7,8 +7,10 @@
namespace autofill {
TestPopupControllerCommon::TestPopupControllerCommon(
- const gfx::RectF& element_bounds)
- : PopupControllerCommon(element_bounds, NULL, NULL) {}
+ const gfx::RectF& element_bounds,
+ base::i18n::TextDirection direction)
+ : PopupControllerCommon(element_bounds, direction, NULL, NULL) {
+}
TestPopupControllerCommon::~TestPopupControllerCommon() {}
gfx::Display TestPopupControllerCommon::GetDisplayNearestPoint(

Powered by Google App Engine
This is Rietveld 408576698