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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: 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

Powered by Google App Engine
This is Rietveld 408576698