Chromium Code Reviews

Unified Diff: chrome/browser/renderer_host/resource_message_filter.cc

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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/resource_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.cc (revision 17048)
+++ chrome/browser/renderer_host/resource_message_filter.cc (working copy)
@@ -357,14 +357,11 @@
uint32 request_id,
const ViewHostMsg_Resource_Request& request_data) {
URLRequestContext* request_context = request_context_;
- // If the request has resource type of ResourceType::MEDIA and
- // LOAD_ENABLE_DOWNLOAD_FILE is set as a load flag, we use a request context
- // specific to media for handling it because these resources have specific
- // needs for caching and data passing.
- if (request_data.resource_type == ResourceType::MEDIA &&
- (request_data.load_flags & net::LOAD_ENABLE_DOWNLOAD_FILE)) {
+ // If the request has resource type of ResourceType::MEDIA, we use a request
+ // context specific to media for handling it because these resources have
+ // specific needs for caching.
+ if (request_data.resource_type == ResourceType::MEDIA)
request_context = media_request_context_;
- }
return request_context;
}
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine