| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class DOMException; | 45 class DOMException; |
| 46 class ExceptionState; | 46 class ExceptionState; |
| 47 class IDBDatabase; | 47 class IDBDatabase; |
| 48 class IDBObjectStore; | 48 class IDBObjectStore; |
| 49 class IDBOpenDBRequest; | 49 class IDBOpenDBRequest; |
| 50 struct IDBObjectStoreMetadata; | 50 struct IDBObjectStoreMetadata; |
| 51 | 51 |
| 52 class MODULES_EXPORT IDBTransaction final | 52 class MODULES_EXPORT IDBTransaction final |
| 53 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBTransaction> | 53 : public EventTargetWithInlineData |
| 54 , public ActiveScriptWrappable | 54 , public ActiveScriptWrappable |
| 55 , public ActiveDOMObject { | 55 , public ActiveDOMObject { |
| 56 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBTransaction); | 56 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBTransaction); |
| 57 USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction); | 57 USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction); |
| 58 DEFINE_WRAPPERTYPEINFO(); | 58 DEFINE_WRAPPERTYPEINFO(); |
| 59 public: | 59 public: |
| 60 static IDBTransaction* create(ScriptState*, int64_t, const HashSet<String>&
objectStoreNames, WebIDBTransactionMode, IDBDatabase*); | 60 static IDBTransaction* create(ScriptState*, int64_t, const HashSet<String>&
objectStoreNames, WebIDBTransactionMode, IDBDatabase*); |
| 61 static IDBTransaction* create(ScriptState*, int64_t, IDBDatabase*, IDBOpenDB
Request*, const IDBDatabaseMetadata& previousMetadata); | 61 static IDBTransaction* create(ScriptState*, int64_t, IDBDatabase*, IDBOpenDB
Request*, const IDBDatabaseMetadata& previousMetadata); |
| 62 ~IDBTransaction() override; | 62 ~IDBTransaction() override; |
| 63 DECLARE_VIRTUAL_TRACE(); | 63 DECLARE_VIRTUAL_TRACE(); |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 // Holds stores created, deleted, or used during upgrade transactions to | 148 // Holds stores created, deleted, or used during upgrade transactions to |
| 149 // reset metadata in case of abort. | 149 // reset metadata in case of abort. |
| 150 HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> m_objectStoreCle
anupMap; | 150 HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> m_objectStoreCle
anupMap; |
| 151 IDBDatabaseMetadata m_previousMetadata; | 151 IDBDatabaseMetadata m_previousMetadata; |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 } // namespace blink | 154 } // namespace blink |
| 155 | 155 |
| 156 #endif // IDBTransaction_h | 156 #endif // IDBTransaction_h |
| OLD | NEW |