| Index: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| index 631c326875294c8c4ab76b02d4d2f085f6c696a1..0edf52a5d34b4d029e3c28ea2590d6382b576465 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| @@ -52,7 +52,7 @@ class MODULES_EXPORT IDBTransaction final
|
| : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBTransaction>
|
| , public ActiveDOMObject {
|
| REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBTransaction);
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction);
|
| + USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static IDBTransaction* create(ScriptState*, int64_t, const HashSet<String>& objectStoreNames, WebIDBTransactionMode, IDBDatabase*);
|
| @@ -74,7 +74,7 @@ public:
|
|
|
| // Implement the IDBTransaction IDL
|
| const String& mode() const;
|
| - PassRefPtrWillBeRawPtr<DOMStringList> objectStoreNames() const;
|
| + RawPtr<DOMStringList> objectStoreNames() const;
|
| IDBDatabase* db() const { return m_database.get(); }
|
| DOMException* error() const { return m_error; }
|
| IDBObjectStore* objectStore(const String& name, ExceptionState&);
|
| @@ -104,12 +104,12 @@ public:
|
|
|
| protected:
|
| // EventTarget
|
| - bool dispatchEventInternal(PassRefPtrWillBeRawPtr<Event>) override;
|
| + bool dispatchEventInternal(RawPtr<Event>) override;
|
|
|
| private:
|
| IDBTransaction(ScriptState*, int64_t, const HashSet<String>&, WebIDBTransactionMode, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata&);
|
|
|
| - void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
|
| + void enqueueEvent(RawPtr<Event>);
|
|
|
| enum State {
|
| Inactive, // Created or started, but not in an event callback
|
|
|