OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 IndexedDBTransaction* transaction); | 186 IndexedDBTransaction* transaction); |
187 void DeleteObjectStoreOperation(int64_t object_store_id, | 187 void DeleteObjectStoreOperation(int64_t object_store_id, |
188 IndexedDBTransaction* transaction); | 188 IndexedDBTransaction* transaction); |
189 void DeleteObjectStoreAbortOperation( | 189 void DeleteObjectStoreAbortOperation( |
190 const IndexedDBObjectStoreMetadata& object_store_metadata, | 190 const IndexedDBObjectStoreMetadata& object_store_metadata, |
191 IndexedDBTransaction* transaction); | 191 IndexedDBTransaction* transaction); |
192 void VersionChangeOperation(int64_t version, | 192 void VersionChangeOperation(int64_t version, |
193 scoped_refptr<IndexedDBCallbacks> callbacks, | 193 scoped_refptr<IndexedDBCallbacks> callbacks, |
194 scoped_ptr<IndexedDBConnection> connection, | 194 scoped_ptr<IndexedDBConnection> connection, |
195 IndexedDBTransaction* transaction); | 195 IndexedDBTransaction* transaction); |
196 void VersionChangeAbortOperation(int64_t previous_int_version, | 196 void VersionChangeAbortOperation(int64_t previous_version, |
197 IndexedDBTransaction* transaction); | 197 IndexedDBTransaction* transaction); |
198 void DeleteIndexOperation(int64_t object_store_id, | 198 void DeleteIndexOperation(int64_t object_store_id, |
199 int64_t index_id, | 199 int64_t index_id, |
200 IndexedDBTransaction* transaction); | 200 IndexedDBTransaction* transaction); |
201 void CreateIndexAbortOperation(int64_t object_store_id, | 201 void CreateIndexAbortOperation(int64_t object_store_id, |
202 int64_t index_id, | 202 int64_t index_id, |
203 IndexedDBTransaction* transaction); | 203 IndexedDBTransaction* transaction); |
204 void DeleteIndexAbortOperation(int64_t object_store_id, | 204 void DeleteIndexAbortOperation(int64_t object_store_id, |
205 const IndexedDBIndexMetadata& index_metadata, | 205 const IndexedDBIndexMetadata& index_metadata, |
206 IndexedDBTransaction* transaction); | 206 IndexedDBTransaction* transaction); |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 PendingDeleteCallList pending_delete_calls_; | 306 PendingDeleteCallList pending_delete_calls_; |
307 | 307 |
308 ConnectionSet connections_; | 308 ConnectionSet connections_; |
309 | 309 |
310 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabase); | 310 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabase); |
311 }; | 311 }; |
312 | 312 |
313 } // namespace content | 313 } // namespace content |
314 | 314 |
315 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ | 315 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
OLD | NEW |