| 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 #ifndef CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" |
| 10 |
| 11 namespace content { |
| 12 |
| 13 class IndexedDBCallbacks; |
| 14 class IndexedDBDatabaseCallbacks; |
| 15 |
| 16 struct IndexedDBPendingConnection { |
| 17 IndexedDBPendingConnection( |
| 18 scoped_refptr<IndexedDBCallbacks> callbacks_in, |
| 19 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in, |
| 20 int child_process_id_in, |
| 21 int64 transaction_id_in, |
| 22 int64 version_in); |
| 23 scoped_refptr<IndexedDBCallbacks> callbacks; |
| 24 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks; |
| 25 int child_process_id; |
| 26 int64 transaction_id; |
| 27 int64 version; |
| 28 }; |
| 29 |
| 30 } // namespace content |
| 31 |
| 32 #endif // CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_ |
| OLD | NEW |