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

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: small cleanup 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..ed02b38ea1907e43b4a0eb181c1e1fb636574068 100644
--- a/content/browser/worker_host/worker_process_host.cc
+++ b/content/browser/worker_host/worker_process_host.cc
@@ -266,8 +266,10 @@ void WorkerProcessHost::CreateMessageFilters(int render_process_id) {
socket_stream_dispatcher_host_ = socket_stream_dispatcher_host;
process_->AddFilter(socket_stream_dispatcher_host);
process_->AddFilter(new WorkerDevToolsMessageFilter(process_->GetData().id));
- process_->AddFilter(
- new IndexedDBDispatcherHost(partition_.indexed_db_context()));
+ process_->AddFilter(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