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