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

Unified Diff: third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/core/timing/WorkerGlobalScopePerformance.h
diff --git a/third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.h b/third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.h
index 0c719fe1484ef7c58837338a9dc7a41b3fab7e01..cdf2e0273a9f37f588be2fede937d73d6fa7e486 100644
--- a/third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.h
+++ b/third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.h
@@ -39,9 +39,8 @@ namespace blink {
class WorkerGlobalScope;
-class WorkerGlobalScopePerformance final : public NoBaseWillBeGarbageCollected<WorkerGlobalScopePerformance>, public WillBeHeapSupplement<WorkerGlobalScope> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopePerformance);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerGlobalScopePerformance);
+class WorkerGlobalScopePerformance final : public GarbageCollected<WorkerGlobalScopePerformance>, public HeapSupplement<WorkerGlobalScope> {
+ USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopePerformance);
public:
static WorkerGlobalScopePerformance& from(WorkerGlobalScope&);
@@ -55,7 +54,7 @@ private:
WorkerPerformance* performance(WorkerGlobalScope*);
static const char* supplementName();
- PersistentWillBeMember<WorkerPerformance> m_performance;
+ Member<WorkerPerformance> m_performance;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698