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

Unified Diff: chrome/common/render_messages_params.cc

Issue 6621006: Take out the is_content_filtered bool that gets passed around betwen renderer... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/common/render_messages_params.h ('k') | chrome/common/resource_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_params.cc
===================================================================
--- chrome/common/render_messages_params.cc (revision 76828)
+++ chrome/common/render_messages_params.cc (working copy)
@@ -29,7 +29,6 @@
should_update_history(false),
gesture(NavigationGestureUser),
is_post(false),
- is_content_filtered(false),
was_within_same_page(false),
http_status_code(0),
was_fetched_via_proxy(false) {
@@ -770,7 +769,6 @@
WriteParam(m, p.gesture);
WriteParam(m, p.contents_mime_type);
WriteParam(m, p.is_post);
- WriteParam(m, p.is_content_filtered);
WriteParam(m, p.was_within_same_page);
WriteParam(m, p.http_status_code);
WriteParam(m, p.socket_address);
@@ -796,7 +794,6 @@
ReadParam(m, iter, &p->gesture) &&
ReadParam(m, iter, &p->contents_mime_type) &&
ReadParam(m, iter, &p->is_post) &&
- ReadParam(m, iter, &p->is_content_filtered) &&
ReadParam(m, iter, &p->was_within_same_page) &&
ReadParam(m, iter, &p->http_status_code) &&
ReadParam(m, iter, &p->socket_address) &&
@@ -835,8 +832,6 @@
l->append(", ");
LogParam(p.is_post, l);
l->append(", ");
- LogParam(p.is_content_filtered, l);
- l->append(", ");
LogParam(p.was_within_same_page, l);
l->append(", ");
LogParam(p.http_status_code, l);
« no previous file with comments | « chrome/common/render_messages_params.h ('k') | chrome/common/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698