| Index: content/child/indexed_db/indexed_db_dispatcher.cc
|
| diff --git a/content/child/indexed_db/indexed_db_dispatcher.cc b/content/child/indexed_db/indexed_db_dispatcher.cc
|
| index 3a66188393d02a0dbb10a6342ff66d27ec16a68d..e6fc2b97495a49797c832b527569d95ae9ee371b 100644
|
| --- a/content/child/indexed_db/indexed_db_dispatcher.cc
|
| +++ b/content/child/indexed_db/indexed_db_dispatcher.cc
|
| @@ -310,7 +310,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseGet(
|
| WebIDBCallbacks* callbacks) {
|
| ResetCursorPrefetchCaches(transaction_id, kAllCursors);
|
| IndexedDBHostMsg_DatabaseGet_Params params;
|
| - init_params(params, callbacks);
|
| + init_params(¶ms, callbacks);
|
| params.ipc_database_id = ipc_database_id;
|
| params.transaction_id = transaction_id;
|
| params.object_store_id = object_store_id;
|
| @@ -345,7 +345,7 @@ void IndexedDBDispatcher::RequestIDBDatabasePut(
|
|
|
| ResetCursorPrefetchCaches(transaction_id, kAllCursors);
|
| IndexedDBHostMsg_DatabasePut_Params params;
|
| - init_params(params, callbacks);
|
| + init_params(¶ms, callbacks);
|
| params.ipc_database_id = ipc_database_id;
|
| params.transaction_id = transaction_id;
|
| params.object_store_id = object_store_id;
|
| @@ -397,7 +397,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseOpenCursor(
|
| WebIDBCallbacks* callbacks) {
|
| ResetCursorPrefetchCaches(transaction_id, kAllCursors);
|
| IndexedDBHostMsg_DatabaseOpenCursor_Params params;
|
| - init_params(params, callbacks);
|
| + init_params(¶ms, callbacks);
|
| params.ipc_database_id = ipc_database_id;
|
| params.transaction_id = transaction_id;
|
| params.object_store_id = object_store_id;
|
| @@ -422,7 +422,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseCount(
|
| WebIDBCallbacks* callbacks) {
|
| ResetCursorPrefetchCaches(transaction_id, kAllCursors);
|
| IndexedDBHostMsg_DatabaseCount_Params params;
|
| - init_params(params, callbacks);
|
| + init_params(¶ms, callbacks);
|
| params.ipc_database_id = ipc_database_id;
|
| params.transaction_id = transaction_id;
|
| params.object_store_id = object_store_id;
|
| @@ -439,7 +439,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseDeleteRange(
|
| WebIDBCallbacks* callbacks) {
|
| ResetCursorPrefetchCaches(transaction_id, kAllCursors);
|
| IndexedDBHostMsg_DatabaseDeleteRange_Params params;
|
| - init_params(params, callbacks);
|
| + init_params(¶ms, callbacks);
|
| params.ipc_database_id = ipc_database_id;
|
| params.transaction_id = transaction_id;
|
| params.object_store_id = object_store_id;
|
|
|