| Index: ui/views/view_unittest.cc
|
| diff --git a/ui/views/view_unittest.cc b/ui/views/view_unittest.cc
|
| index 7786a4786aab8b2df0921bcebabb48e8e62e8782..1b0a0b6b25393118a8f0b9132ff55d5b1f26281b 100644
|
| --- a/ui/views/view_unittest.cc
|
| +++ b/ui/views/view_unittest.cc
|
| @@ -1555,7 +1555,8 @@ TEST_F(ViewTest, TextfieldCutCopyPaste) {
|
| Textfield* normal = new Textfield();
|
| Textfield* read_only = new Textfield();
|
| read_only->SetReadOnly(true);
|
| - Textfield* password = new Textfield(Textfield::STYLE_OBSCURED);
|
| + Textfield* password = new Textfield();
|
| + password->SetTextInputType(ui::TEXT_INPUT_TYPE_PASSWORD);
|
|
|
| root_view->AddChildView(normal);
|
| root_view->AddChildView(read_only);
|
|
|