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..fe4861cf9cfa0306a2794c67844e4612123f428d 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 PasswordGenerationEvent { |
|
vabr (Chromium)
2016/02/17 13:43:22
This name collides with the enum in components/aut
dvadym
2016/02/19 16:25:05
Thanks, I've renamed to PasswordGenerationType
|
| + 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_ |