| 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(
|
|
|