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

Unified Diff: components/autofill/core/common/form_data.h

Issue 853523004: Autofill: Set requirements for number of recognized fields in an autofillable form (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, change variable name Created 5 years, 11 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/common/form_data.h
diff --git a/components/autofill/core/common/form_data.h b/components/autofill/core/common/form_data.h
index f7b2c8dde52e3c49a81915ce07229ab81597c6bf..747fca96bfc1b3bef58a2c0d977b7c296db4cb3f 100644
--- a/components/autofill/core/common/form_data.h
+++ b/components/autofill/core/common/form_data.h
@@ -34,6 +34,8 @@ struct FormData {
GURL action;
// true if this form was submitted by a user gesture and not javascript.
bool user_submitted;
+ // true if this form is a form tag.
+ bool is_form_tag;
// A vector of all the input fields in the form.
std::vector<FormFieldData> fields;
};

Powered by Google App Engine
This is Rietveld 408576698