| Index: components/autofill/core/browser/form_field.cc
|
| diff --git a/components/autofill/core/browser/form_field.cc b/components/autofill/core/browser/form_field.cc
|
| index 272367622b551033b12fc472357f8d8e64e7601f..b25ff2b44f72d6bd9a62fdb1ce02678e3f124ada 100644
|
| --- a/components/autofill/core/browser/form_field.cc
|
| +++ b/components/autofill/core/browser/form_field.cc
|
| @@ -186,6 +186,9 @@ bool FormField::MatchesFormControlType(const std::string& type,
|
| if ((match_type & MATCH_TEXT_AREA) && type == "textarea")
|
| return true;
|
|
|
| + if ((match_type & MATCH_PASSWORD) && type == "password")
|
| + return true;
|
| +
|
| return false;
|
| }
|
|
|
|
|