Chromium Code Reviews| Index: components/autofill/core/browser/field_types.h |
| diff --git a/components/autofill/core/browser/field_types.h b/components/autofill/core/browser/field_types.h |
| index a3787e076ec2d8d8a6e97b1ac360494775a7164a..0bbc2a23395a5f11ebf7c0eeaf00ff44c049cc91 100644 |
| --- a/components/autofill/core/browser/field_types.h |
| +++ b/components/autofill/core/browser/field_types.h |
| @@ -249,6 +249,15 @@ enum FieldTypeGroup { |
| typedef std::set<ServerFieldType> ServerFieldTypeSet; |
| typedef std::map<base::string16, ServerFieldType> ServerFieldTypeMap; |
| +// The list of types of password generation. |
| +enum PasswordGenerationType { |
|
Mathieu
2016/02/22 13:25:20
The idea is that you remove this and only use the
dvadym
2016/02/22 14:52:32
Done.
|
| + NO_GENERATION, |
| + AUTOMATICALLY_TRIGGERED_GENERATION_ON_SIGN_UP_FORM, |
| + AUTOMATICALLY_TRIGGERED_GENERATION_ON_CHANGE_PASSWORD_FORM, |
| + MANUALLY_TRIGGERED_GENERATION_ON_SIGN_UP_FORM, |
| + MANUALLY_TRIGGERED_GENERATION_ON_CHANGE_PASSWORD_FORM, |
| +}; |
| + |
| } // namespace autofill |
| #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_FIELD_TYPES_H_ |