Index: chrome/common/render_messages.h |
=================================================================== |
--- chrome/common/render_messages.h (revision 53685) |
+++ chrome/common/render_messages.h (working copy) |
@@ -1775,6 +1775,7 @@ |
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) { |
@@ -1783,6 +1784,7 @@ |
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) { |