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

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

Issue 920683002: [Password Generation] Add negative votes for crowdsourcing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 5 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 75a5b92922ce2ab863283580fa92af5ef504d3b4..c24462ac40f5ba7f65021a342a33fabe287916b9 100644
--- a/components/autofill/core/browser/field_types.h
+++ b/components/autofill/core/browser/field_types.h
@@ -136,10 +136,14 @@ enum ServerFieldType {
ADDRESS_HOME_LINE3 = 83,
ADDRESS_BILLING_LINE3 = 84,
+ // Inverse of ACCOUNT_CREATION_PASSWORD. Sent when there is data that
+ // a previous upload of ACCOUNT_CREATION_PASSWORD was incorrect.
+ NOT_ACCOUNT_CREATION_PASSWORD = 85,
+
// No new types can be added without a corresponding change to the Autofill
// server.
- MAX_VALID_FIELD_TYPE = 85,
+ MAX_VALID_FIELD_TYPE = 86,
};
// The list of all HTML autocomplete field type hints supported by Chrome.

Powered by Google App Engine
This is Rietveld 408576698