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

Unified Diff: chrome/common/render_messages.h

Issue 113931: Remove code path that passes a file handle to the renderer... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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/chrome.gyp ('k') | chrome/common/resource_dispatcher.h » ('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 17048)
+++ chrome/common/render_messages.h (working copy)
@@ -1319,7 +1319,6 @@
WriteParam(m, p.security_info);
WriteParam(m, p.content_length);
WriteParam(m, p.app_cache_id);
- WriteParam(m, p.response_data_file);
}
static bool Read(const Message* m, void** iter, param_type* r) {
return
@@ -1330,8 +1329,7 @@
ReadParam(m, iter, &r->charset) &&
ReadParam(m, iter, &r->security_info) &&
ReadParam(m, iter, &r->content_length) &&
- ReadParam(m, iter, &r->app_cache_id) &&
- ReadParam(m, iter, &r->response_data_file);
+ ReadParam(m, iter, &r->app_cache_id);
}
static void Log(const param_type& p, std::wstring* l) {
l->append(L"(");
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/resource_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698