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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 int64_t m_id; | 119 int64_t m_id; |
120 Member<IDBDatabase> m_database; | 120 Member<IDBDatabase> m_database; |
121 const Vector<String> m_objectStoreNames; | 121 const Vector<String> m_objectStoreNames; |
122 Member<IDBOpenDBRequest> m_openDBRequest; | 122 Member<IDBOpenDBRequest> m_openDBRequest; |
123 const WebIDBTransactionMode m_mode; | 123 const WebIDBTransactionMode m_mode; |
124 State m_state; | 124 State m_state; |
125 bool m_hasPendingActivity; | 125 bool m_hasPendingActivity; |
126 bool m_contextStopped; | 126 bool m_contextStopped; |
127 Member<DOMError> m_error; | 127 Member<DOMError> m_error; |
128 | 128 |
129 HeapListHashSet<Member<IDBRequest> > m_requestList; | 129 HeapListHashSet<Member<IDBRequest>> m_requestList; |
130 | 130 |
131 typedef HeapHashMap<String, Member<IDBObjectStore> > IDBObjectStoreMap; | 131 typedef HeapHashMap<String, Member<IDBObjectStore>> IDBObjectStoreMap; |
132 IDBObjectStoreMap m_objectStoreMap; | 132 IDBObjectStoreMap m_objectStoreMap; |
133 | 133 |
134 typedef HeapHashSet<Member<IDBObjectStore> > IDBObjectStoreSet; | 134 typedef HeapHashSet<Member<IDBObjectStore>> IDBObjectStoreSet; |
135 IDBObjectStoreSet m_deletedObjectStores; | 135 IDBObjectStoreSet m_deletedObjectStores; |
136 | 136 |
137 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec
tStoreMetadataMap; | 137 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec
tStoreMetadataMap; |
138 IDBObjectStoreMetadataMap m_objectStoreCleanupMap; | 138 IDBObjectStoreMetadataMap m_objectStoreCleanupMap; |
139 IDBDatabaseMetadata m_previousMetadata; | 139 IDBDatabaseMetadata m_previousMetadata; |
140 }; | 140 }; |
141 | 141 |
142 } // namespace blink | 142 } // namespace blink |
143 | 143 |
144 #endif // IDBTransaction_h | 144 #endif // IDBTransaction_h |
OLD | NEW |