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

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

Issue 2870163003: Log Autofill.Quality.*.ByFieldType by predicted type for unknown data. (Closed)
Patch Set: comments from mathp Created 3 years, 7 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 cee305fcda51c25dfe6c443692ebd96ecd1e20a3..33d1cf7703edf3f161d0c71674b977755706702d 100644
--- a/components/autofill/core/browser/field_types.h
+++ b/components/autofill/core/browser/field_types.h
@@ -163,9 +163,13 @@ enum ServerFieldType {
// forms.
CONFIRMATION_PASSWORD = 95,
+ // The data entered by the user matches multiple pieces of autofill data,
+ // none of which were predicted by autofill.
+ AMBIGUOUS_TYPE = 96,
Mathieu 2017/05/31 20:07:18 you'll need to modify the server version according
Roger McFarlane (Chromium) 2017/06/01 20:23:16 Acknowledged.
+
// No new types can be added without a corresponding change to the Autofill
// server.
- MAX_VALID_FIELD_TYPE = 96,
+ MAX_VALID_FIELD_TYPE = 97,
};
// The list of all HTML autocomplete field type hints supported by Chrome.

Powered by Google App Engine
This is Rietveld 408576698