| 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
|
|
|