Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1145)

Unified Diff: Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h

Issue 178663004: Oilpan: move WorkerGlobalScope to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make heap supplements actually be heap allocated Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
diff --git a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
index a098f931bbc7bfcd1d744d986854a1cd9e5e6042..26b1fe15ed49f3ede54f91cb3484f93c225716cb 100644
--- a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
+++ b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
@@ -35,13 +35,15 @@ class IDBFactory;
class IDBFactoryBackendInterface;
class ExecutionContext;
-class WorkerGlobalScopeIndexedDatabase FINAL : public WorkerSupplement {
+class WorkerGlobalScopeIndexedDatabase FINAL : public NoBaseWillBeGarbageCollectedFinalized<WorkerGlobalScopeIndexedDatabase>, public WorkerSupplement {
public:
virtual ~WorkerGlobalScopeIndexedDatabase();
static WorkerGlobalScopeIndexedDatabase& from(WorkerSupplementable&);
static IDBFactory* indexedDB(WorkerSupplementable&);
+ virtual void trace(Visitor*);
+
private:
WorkerGlobalScopeIndexedDatabase();

Powered by Google App Engine
This is Rietveld 408576698