Chromium Code Reviews| Index: chrome/browser/ui/autofill/password_generation_popup_controller_impl.cc |
| diff --git a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.cc b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.cc |
| index e3dabb19932dce24ca4c66de36bd238df7dda707..fb31720cef42f2f0b5e9b5c73f3285422151e48d 100644 |
| --- a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.cc |
| +++ b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.cc |
| @@ -83,7 +83,11 @@ PasswordGenerationPopupControllerImpl::PasswordGenerationPopupControllerImpl( |
| driver_(driver), |
| observer_(observer), |
| generator_(new PasswordGenerator(max_length)), |
| - controller_common_(bounds, container_view, web_contents), |
| + // TODO(estade): use correct text direction. |
|
Garrett Casto
2015/05/26 04:30:14
Shouldn't this just be
base::i18n::GetTextDirecti
Evan Stade
2015/05/26 18:30:47
I suspect (but am not certain) you want to do the
|
| + controller_common_(bounds, |
| + base::i18n::LEFT_TO_RIGHT, |
| + container_view, |
| + web_contents), |
| password_selected_(false), |
| display_password_(false), |
| weak_ptr_factory_(this) { |