OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef IDBObjectStore_h | 26 #ifndef IDBObjectStore_h |
27 #define IDBObjectStore_h | 27 #define IDBObjectStore_h |
28 | 28 |
29 #include "bindings/core/v8/ScriptWrappable.h" | 29 #include "bindings/core/v8/ScriptWrappable.h" |
30 #include "bindings/core/v8/SerializedScriptValue.h" | 30 #include "bindings/core/v8/SerializedScriptValue.h" |
| 31 #include "bindings/modules/v8/UnionTypesModules.h" |
31 #include "modules/indexeddb/IDBCursor.h" | 32 #include "modules/indexeddb/IDBCursor.h" |
32 #include "modules/indexeddb/IDBIndex.h" | 33 #include "modules/indexeddb/IDBIndex.h" |
33 #include "modules/indexeddb/IDBIndexParameters.h" | 34 #include "modules/indexeddb/IDBIndexParameters.h" |
34 #include "modules/indexeddb/IDBKey.h" | 35 #include "modules/indexeddb/IDBKey.h" |
35 #include "modules/indexeddb/IDBKeyRange.h" | 36 #include "modules/indexeddb/IDBKeyRange.h" |
36 #include "modules/indexeddb/IDBMetadata.h" | 37 #include "modules/indexeddb/IDBMetadata.h" |
37 #include "modules/indexeddb/IDBRequest.h" | 38 #include "modules/indexeddb/IDBRequest.h" |
38 #include "modules/indexeddb/IDBTransaction.h" | 39 #include "modules/indexeddb/IDBTransaction.h" |
39 #include "public/platform/modules/indexeddb/WebIDBCursor.h" | 40 #include "public/platform/modules/indexeddb/WebIDBCursor.h" |
40 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" | 41 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 IDBIndexMap m_indexMap; | 127 IDBIndexMap m_indexMap; |
127 | 128 |
128 // Used to mark indexes created in an aborted upgrade transaction as | 129 // Used to mark indexes created in an aborted upgrade transaction as |
129 // deleted. | 130 // deleted. |
130 HeapHashSet<Member<IDBIndex>> m_createdIndexes; | 131 HeapHashSet<Member<IDBIndex>> m_createdIndexes; |
131 }; | 132 }; |
132 | 133 |
133 } // namespace blink | 134 } // namespace blink |
134 | 135 |
135 #endif // IDBObjectStore_h | 136 #endif // IDBObjectStore_h |
OLD | NEW |