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

Unified Diff: chrome/common/render_messages.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/browser/autofill/form_structure_unittest.cc ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 58043)
+++ chrome/common/render_messages.h (working copy)
@@ -1779,7 +1779,6 @@
WriteParam(m, p.method);
WriteParam(m, p.origin);
WriteParam(m, p.action);
- WriteParam(m, p.user_submitted);
WriteParam(m, p.fields);
}
static bool Read(const Message* m, void** iter, param_type* p) {
@@ -1788,7 +1787,6 @@
ReadParam(m, iter, &p->method) &&
ReadParam(m, iter, &p->origin) &&
ReadParam(m, iter, &p->action) &&
- ReadParam(m, iter, &p->user_submitted) &&
ReadParam(m, iter, &p->fields);
}
static void Log(const param_type& p, std::wstring* l) {
« no previous file with comments | « chrome/browser/autofill/form_structure_unittest.cc ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698