Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / indexed_db / indexed_db_pending_connection.h
blobc16691e78117b4a4ecff8b630c343a1d143fdd4a
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.
5 #ifndef CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_
6 #define CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_
8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h"
10 #include "content/browser/indexed_db/indexed_db_callbacks.h"
11 #include "content/browser/indexed_db/indexed_db_database_callbacks.h"
12 #include "content/common/content_export.h"
14 namespace content {
16 class IndexedDBCallbacks;
17 class IndexedDBDatabaseCallbacks;
19 struct CONTENT_EXPORT IndexedDBPendingConnection {
20 IndexedDBPendingConnection(
21 scoped_refptr<IndexedDBCallbacks> callbacks_in,
22 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
23 int child_process_id_in,
24 int64 transaction_id_in,
25 int64 version_in);
26 ~IndexedDBPendingConnection();
27 scoped_refptr<IndexedDBCallbacks> callbacks;
28 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks;
29 int child_process_id;
30 int64 transaction_id;
31 int64 version;
34 } // namespace content
36 #endif // CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_