| Index: third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp b/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
|
| index 764329a6315138dacea45ee6da9ddc32e8f94d04..a2453cbdf41c9e27cfa9d9ff688359a1f745c3a4 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
|
| @@ -65,14 +65,14 @@ bool PasswordInputType::shouldSaveAndRestoreFormControlState() const
|
| FormControlState PasswordInputType::saveFormControlState() const
|
| {
|
| // Should never save/restore password fields.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return FormControlState();
|
| }
|
|
|
| void PasswordInputType::restoreFormControlState(const FormControlState&)
|
| {
|
| // Should never save/restore password fields.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| bool PasswordInputType::shouldRespectListAttribute()
|
|
|