Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/indexed_db/indexed_db_pending_connection.h" | |
| 6 | |
| 7 #include "content/browser/indexed_db/indexed_db_callbacks.h" | |
| 8 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 IndexedDBPendingConnection::IndexedDBPendingConnection( | |
| 13 scoped_refptr<IndexedDBCallbacks> callbacks_in, | |
| 14 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in, | |
| 15 int child_process_id_in, | |
| 16 int64 transaction_id_in, | |
| 17 int64 version_in) | |
| 18 : callbacks(callbacks_in), | |
| 19 database_callbacks(database_callbacks_in), | |
| 20 child_process_id(child_process_id_in), | |
|
jsbell
2014/03/12 23:40:49
Dunno if it's worth it, but maybe DCHECK that chil
ericu
2014/03/12 23:56:37
I'm not sure a 0-check really buys us anything.
Th
| |
| 21 transaction_id(transaction_id_in), | |
| 22 version(version_in) {} | |
| 23 | |
| 24 } // namespace content | |
| OLD | NEW |