| Index: third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| index a03218d744c296cb87b4f48b01f7311bebd6757b..3eb5d8714898b3ce7007f259cf26fa3ba48b239e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| +++ b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| @@ -53,9 +53,8 @@ class MutationObserver;
|
| class ThreadableLoaderClient;
|
| class XMLHttpRequest;
|
|
|
| -class CORE_EXPORT AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallTracker> {
|
| +class CORE_EXPORT AsyncCallTracker final : public GarbageCollectedFinalized<AsyncCallTracker> {
|
| WTF_MAKE_NONCOPYABLE(AsyncCallTracker);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(AsyncCallTracker);
|
| public:
|
| AsyncCallTracker(V8DebuggerAgent*, InstrumentingAgents*);
|
| ~AsyncCallTracker();
|
| @@ -110,10 +109,10 @@ private:
|
|
|
| ExecutionContextData* createContextDataIfNeeded(ExecutionContext*);
|
|
|
| - using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<ExecutionContext>, OwnPtrWillBeMember<ExecutionContextData>>;
|
| + using ExecutionContextDataMap = HeapHashMap<Member<ExecutionContext>, Member<ExecutionContextData>>;
|
| ExecutionContextDataMap m_executionContextDataMap;
|
| V8DebuggerAgent* m_debuggerAgent;
|
| - RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
|
| + Member<InstrumentingAgents> m_instrumentingAgents;
|
| };
|
|
|
| } // namespace blink
|
|
|