| Index: third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h b/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| index e065b0eae84cd62faa49019670bf88d6054c5c93..a1e0640e9e234ab28577012de59665db98a053e4 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| @@ -36,14 +36,13 @@ namespace blink {
|
| class IDBFactory;
|
| class WorkerGlobalScope;
|
|
|
| -class WorkerGlobalScopeIndexedDatabase final : public NoBaseWillBeGarbageCollectedFinalized<WorkerGlobalScopeIndexedDatabase>, public WillBeHeapSupplement<WorkerGlobalScope> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeIndexedDatabase);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerGlobalScopeIndexedDatabase);
|
| +class WorkerGlobalScopeIndexedDatabase final : public GarbageCollectedFinalized<WorkerGlobalScopeIndexedDatabase>, public HeapSupplement<WorkerGlobalScope> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeIndexedDatabase);
|
| public:
|
| virtual ~WorkerGlobalScopeIndexedDatabase();
|
| - static WorkerGlobalScopeIndexedDatabase& from(WillBeHeapSupplementable<WorkerGlobalScope>&);
|
| + static WorkerGlobalScopeIndexedDatabase& from(HeapSupplementable<WorkerGlobalScope>&);
|
|
|
| - static IDBFactory* indexedDB(WillBeHeapSupplementable<WorkerGlobalScope>&);
|
| + static IDBFactory* indexedDB(HeapSupplementable<WorkerGlobalScope>&);
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -53,7 +52,7 @@ private:
|
| IDBFactory* indexedDB();
|
| static const char* supplementName();
|
|
|
| - PersistentWillBeMember<IDBFactory> m_idbFactory;
|
| + Member<IDBFactory> m_idbFactory;
|
| };
|
|
|
| } // namespace blink
|
|
|