| 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 a1e0640e9e234ab28577012de59665db98a053e4..8e300c274865ba5b6badfa5bdf79709573995061 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
|
| @@ -36,13 +36,13 @@ namespace blink {
|
| class IDBFactory;
|
| class WorkerGlobalScope;
|
|
|
| -class WorkerGlobalScopeIndexedDatabase final : public GarbageCollectedFinalized<WorkerGlobalScopeIndexedDatabase>, public HeapSupplement<WorkerGlobalScope> {
|
| +class WorkerGlobalScopeIndexedDatabase final : public GarbageCollectedFinalized<WorkerGlobalScopeIndexedDatabase>, public Supplement<WorkerGlobalScope> {
|
| USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeIndexedDatabase);
|
| public:
|
| virtual ~WorkerGlobalScopeIndexedDatabase();
|
| - static WorkerGlobalScopeIndexedDatabase& from(HeapSupplementable<WorkerGlobalScope>&);
|
| + static WorkerGlobalScopeIndexedDatabase& from(Supplementable<WorkerGlobalScope>&);
|
|
|
| - static IDBFactory* indexedDB(HeapSupplementable<WorkerGlobalScope>&);
|
| + static IDBFactory* indexedDB(Supplementable<WorkerGlobalScope>&);
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|