| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef IDBDatabase_h | 26 #ifndef IDBDatabase_h |
| 27 #define IDBDatabase_h | 27 #define IDBDatabase_h |
| 28 | 28 |
| 29 #include "bindings/v8/Dictionary.h" | 29 #include "bindings/v8/Dictionary.h" |
| 30 #include "bindings/v8/ScriptWrappable.h" | 30 #include "bindings/v8/ScriptWrappable.h" |
| 31 #include "core/dom/ActiveDOMObject.h" | 31 #include "core/dom/ActiveDOMObject.h" |
| 32 #include "core/dom/DOMStringList.h" | 32 #include "core/dom/DOMStringList.h" |
| 33 #include "core/events/Event.h" | 33 #include "core/events/Event.h" |
| 34 #include "core/events/EventTarget.h" | 34 #include "modules/EventTargetModules.h" |
| 35 #include "modules/indexeddb/IDBDatabaseCallbacks.h" | 35 #include "modules/indexeddb/IDBDatabaseCallbacks.h" |
| 36 #include "modules/indexeddb/IDBMetadata.h" | 36 #include "modules/indexeddb/IDBMetadata.h" |
| 37 #include "modules/indexeddb/IDBObjectStore.h" | 37 #include "modules/indexeddb/IDBObjectStore.h" |
| 38 #include "modules/indexeddb/IDBTransaction.h" | 38 #include "modules/indexeddb/IDBTransaction.h" |
| 39 #include "modules/indexeddb/IndexedDB.h" | 39 #include "modules/indexeddb/IndexedDB.h" |
| 40 #include "platform/heap/Handle.h" | 40 #include "platform/heap/Handle.h" |
| 41 #include "public/platform/WebIDBDatabase.h" | 41 #include "public/platform/WebIDBDatabase.h" |
| 42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
| 43 #include "wtf/PassOwnPtr.h" | 43 #include "wtf/PassOwnPtr.h" |
| 44 #include "wtf/PassRefPtr.h" | 44 #include "wtf/PassRefPtr.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // Keep track of the versionchange events waiting to be fired on this | 154 // Keep track of the versionchange events waiting to be fired on this |
| 155 // database so that we can cancel them if the database closes. | 155 // database so that we can cancel them if the database closes. |
| 156 WillBeHeapVector<RefPtrWillBeMember<Event> > m_enqueuedEvents; | 156 WillBeHeapVector<RefPtrWillBeMember<Event> > m_enqueuedEvents; |
| 157 | 157 |
| 158 RefPtrWillBeMember<IDBDatabaseCallbacks> m_databaseCallbacks; | 158 RefPtrWillBeMember<IDBDatabaseCallbacks> m_databaseCallbacks; |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 } // namespace WebCore | 161 } // namespace WebCore |
| 162 | 162 |
| 163 #endif // IDBDatabase_h | 163 #endif // IDBDatabase_h |
| OLD | NEW |