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

Unified Diff: content/child/indexed_db/indexed_db_dispatcher.cc

Issue 311263014: IndexedDB: Fix trivial cpplint.py errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 6 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/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(&params, 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(&params, 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(&params, 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(&params, 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(&params, callbacks);
params.ipc_database_id = ipc_database_id;
params.transaction_id = transaction_id;
params.object_store_id = object_store_id;
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | content/child/indexed_db/indexed_db_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698