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

Unified Diff: components/autofill/core/browser/proto/server.proto

Issue 2148303005: [Password Generation] Sends the flag whether a field has nonempty user input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a typo Created 4 years, 5 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/proto/server.proto
diff --git a/components/autofill/core/browser/proto/server.proto b/components/autofill/core/browser/proto/server.proto
index d7f19e2152aa67cfd0fb265e10e7ece9cf5f9b5c..754519777353a87073263b5e6b0f0ac990635cb8 100644
--- a/components/autofill/core/browser/proto/server.proto
+++ b/components/autofill/core/browser/proto/server.proto
@@ -33,7 +33,7 @@ message AutofillQueryResponseContents {
// This message contains information about the field types in a single form.
// It is sent by the toolbar to contribute to the field type statistics.
-// Next available id: 20
+// Next available id: 21
message AutofillUploadContents {
required string client_version = 1;
required fixed64 form_signature = 2;
@@ -89,6 +89,10 @@ message AutofillUploadContents {
// The value of the class attribute on the field, if present.
optional string css_classes = 19;
+
+ // The properties mask (i.e. whether the field was autofilled, user
+ // modified, etc.) See FieldPropertiesFlags.
+ optional uint32 properties_mask = 20;
}
// Signature of the form action host (e.g. Hash64Bit("example.com")).
optional fixed64 action_signature = 13;

Powered by Google App Engine
This is Rietveld 408576698