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

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: Addressed reviewers comments 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..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_

Powered by Google App Engine
This is Rietveld 408576698