| 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 190ecba2ed03bf9262bd9be21b859bbc8cb7dffd..6def7ddb391af05f6df0c2be4602eff6e5dceea8 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "base/base64.h"
|
| #include "base/bind.h"
|
| +#include "base/i18n/rtl.h"
|
| #include "base/logging.h"
|
| #include "base/prefs/pref_service.h"
|
| #include "base/string_util.h"
|
| @@ -1382,7 +1383,9 @@ void AutofillDialogControllerImpl::UserEditedOrActivatedInput(
|
| popup_controller_,
|
| weak_ptr_factory_.GetWeakPtr(),
|
| parent_view,
|
| - content_bounds);
|
| + content_bounds,
|
| + base::i18n::IsRTL() ?
|
| + base::i18n::RIGHT_TO_LEFT : base::i18n::LEFT_TO_RIGHT);
|
| popup_controller_->Show(popup_values,
|
| popup_labels,
|
| popup_icons,
|
|
|