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

Unified Diff: content/browser/indexed_db/indexed_db_dispatcher_host.cc

Issue 203833003: Add the IndexedDBActiveBlobRegistry, currently unused, to enable future blob (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clang fixes Created 6 years, 9 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/indexed_db/indexed_db_dispatcher_host.cc
diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
index b627393c8de2635f504d0d9d4b5a5fc710dc238b..7c13446bd34918e28a4fb4d3e92938d0bb058f2c 100644
--- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc
+++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
@@ -249,7 +249,8 @@ void IndexedDBDispatcherHost::OnIDBFactoryGetDatabaseNames(
new IndexedDBCallbacks(
this, params.ipc_thread_id, params.ipc_callbacks_id),
origin_url,
- indexed_db_path);
+ indexed_db_path,
+ Context()->TaskRunner());
}
void IndexedDBDispatcherHost::OnIDBFactoryOpen(
@@ -279,8 +280,11 @@ void IndexedDBDispatcherHost::OnIDBFactoryOpen(
0 /* TODO(ericu) ipc_process_id */,
host_transaction_id,
params.version);
- Context()->GetIDBFactory()->Open(
- params.name, connection, origin_url, indexed_db_path);
+ Context()->GetIDBFactory()->Open(params.name,
+ connection,
+ origin_url,
+ indexed_db_path,
+ Context()->TaskRunner());
}
void IndexedDBDispatcherHost::OnIDBFactoryDeleteDatabase(
@@ -294,7 +298,8 @@ void IndexedDBDispatcherHost::OnIDBFactoryDeleteDatabase(
new IndexedDBCallbacks(
this, params.ipc_thread_id, params.ipc_callbacks_id),
origin_url,
- indexed_db_path);
+ indexed_db_path,
+ Context()->TaskRunner());
}
void IndexedDBDispatcherHost::OnAckReceivedBlobs(

Powered by Google App Engine
This is Rietveld 408576698