Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Unified Diff: components/autofill/core/browser/field_types.h

Issue 1686063004: Sending generated vote on password generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments update Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698