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

Unified Diff: content/browser/worker_host/worker_process_host.cc

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle the rest of Josh's feedback. Created 7 years 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/worker_host/worker_process_host.cc
diff --git a/content/browser/worker_host/worker_process_host.cc b/content/browser/worker_host/worker_process_host.cc
index 08277da2a4c7393f601c49ccd01a3bd766f0ca25..b4e97fc8730aabd1b955c8fb845e133b8df8c994 100644
--- a/content/browser/worker_host/worker_process_host.cc
+++ b/content/browser/worker_host/worker_process_host.cc
@@ -267,7 +267,10 @@ void WorkerProcessHost::CreateMessageFilters(int render_process_id) {
process_->AddFilter(socket_stream_dispatcher_host);
process_->AddFilter(new WorkerDevToolsMessageFilter(process_->GetData().id));
process_->AddFilter(
- new IndexedDBDispatcherHost(partition_.indexed_db_context()));
+ new IndexedDBDispatcherHost(process_->GetData().id,
+ url_request_context,
+ partition_.indexed_db_context(),
+ blob_storage_context));
}
void WorkerProcessHost::CreateWorker(const WorkerInstance& instance) {

Powered by Google App Engine
This is Rietveld 408576698