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

Unified Diff: webkit/glue/form_data.h

Issue 3251007: Revert 53686 - Merge 53350 - AutoFill: Record whether the user initiated the ... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/472/src/
Patch Set: Created 10 years, 4 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
« no previous file with comments | « chrome/renderer/form_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/form_data.h
===================================================================
--- webkit/glue/form_data.h (revision 58043)
+++ webkit/glue/form_data.h (working copy)
@@ -23,8 +23,6 @@
GURL origin;
// The action target of the form.
GURL action;
- // true if this form was submitted by a user gesture and not javascript.
- bool user_submitted;
// A vector of all the input fields in the form.
std::vector<FormField> fields;
@@ -36,7 +34,6 @@
StringToLowerASCII(method) == StringToLowerASCII(form.method) &&
origin == form.origin &&
action == form.action &&
- user_submitted == form.user_submitted &&
fields == form.fields);
}
};
« no previous file with comments | « chrome/renderer/form_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698