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

Unified Diff: content/browser/loader/resource_message_filter.cc

Issue 11778016: net: Stop using base::WorkerPool from UploadFileElementReader (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: _ Created 7 years, 11 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
Index: content/browser/loader/resource_message_filter.cc
diff --git a/content/browser/loader/resource_message_filter.cc b/content/browser/loader/resource_message_filter.cc
index c7dc0a1b2521a89352d96bfe5cae84bc0454a96d..6f7c97cc31924b2aa49fc3306ffc0a679d04427b 100644
--- a/content/browser/loader/resource_message_filter.cc
+++ b/content/browser/loader/resource_message_filter.cc
@@ -8,6 +8,7 @@
#include "content/browser/fileapi/chrome_blob_storage_context.h"
#include "content/browser/loader/resource_dispatcher_host_impl.h"
#include "content/public/browser/resource_context.h"
+#include "webkit/fileapi/file_system_context.h"
namespace content {
@@ -17,12 +18,14 @@ ResourceMessageFilter::ResourceMessageFilter(
ResourceContext* resource_context,
ChromeAppCacheService* appcache_service,
ChromeBlobStorageContext* blob_storage_context,
+ fileapi::FileSystemContext* file_system_context,
URLRequestContextSelector* url_request_context_selector)
: child_id_(child_id),
process_type_(process_type),
resource_context_(resource_context),
appcache_service_(appcache_service),
blob_storage_context_(blob_storage_context),
+ file_system_context_(file_system_context),
url_request_context_selector_(url_request_context_selector) {
DCHECK(resource_context);
DCHECK(url_request_context_selector);

Powered by Google App Engine
This is Rietveld 408576698