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

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

Issue 2472213003: [IndexedDB] Refactoring to remove ref ptrs and host transaction ids. (Closed)
Patch Set: comments Created 4 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/indexed_db/indexed_db_pending_connection.cc
diff --git a/content/browser/indexed_db/indexed_db_pending_connection.cc b/content/browser/indexed_db/indexed_db_pending_connection.cc
index 34f4924285ca8f5d18589fbb2303d6970c7820e2..0f6dcea9fa564e489cba55176c0d6eca61bbcf89 100644
--- a/content/browser/indexed_db/indexed_db_pending_connection.cc
+++ b/content/browser/indexed_db/indexed_db_pending_connection.cc
@@ -7,16 +7,16 @@
namespace content {
IndexedDBPendingConnection::IndexedDBPendingConnection(
- scoped_refptr<IndexedDBCallbacks> callbacks_in,
- scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
- int child_process_id_in,
- int64_t transaction_id_in,
- int64_t version_in)
- : callbacks(callbacks_in),
- database_callbacks(database_callbacks_in),
- child_process_id(child_process_id_in),
- transaction_id(transaction_id_in),
- version(version_in) {}
+ scoped_refptr<IndexedDBCallbacks> callbacks,
+ scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks,
+ int child_process_id,
+ int64_t transaction_id,
+ int64_t version)
+ : callbacks(callbacks),
+ database_callbacks(database_callbacks),
+ child_process_id(child_process_id),
+ transaction_id(transaction_id),
+ version(version) {}
IndexedDBPendingConnection::IndexedDBPendingConnection(
const IndexedDBPendingConnection& other) = default;

Powered by Google App Engine
This is Rietveld 408576698