| Index: chrome/browser/ui/views/crypto_module_password_dialog_view.cc
|
| diff --git a/chrome/browser/ui/views/crypto_module_password_dialog_view.cc b/chrome/browser/ui/views/crypto_module_password_dialog_view.cc
|
| index 93d374e8b1631b76d194d6fc8dc425d3250e9fce..b554d6d4c5ee3e0b16975807de90bc397d07cad0 100644
|
| --- a/chrome/browser/ui/views/crypto_module_password_dialog_view.cc
|
| +++ b/chrome/browser/ui/views/crypto_module_password_dialog_view.cc
|
| @@ -121,8 +121,9 @@ void CryptoModulePasswordDialogView::Init(const std::string& hostname,
|
| password_label_ = new views::Label(l10n_util::GetStringUTF16(
|
| IDS_CRYPTO_MODULE_AUTH_DIALOG_PASSWORD_FIELD));
|
|
|
| - password_entry_ = new views::Textfield(views::Textfield::STYLE_OBSCURED);
|
| - password_entry_->SetController(this);
|
| + password_entry_ = new views::Textfield();
|
| + password_entry_->SetTextInputType(ui::TEXT_INPUT_TYPE_PASSWORD);
|
| + password_entry_->set_controller(this);
|
|
|
| views::GridLayout* layout = views::GridLayout::CreatePanel(this);
|
| SetLayoutManager(layout);
|
|
|