| 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 bfc249d700ac42725d6a4626d81e6c73b107d46e..5ff6fd74e5523595f6523a74f42d3a4a17cff804 100644
|
| --- a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| +++ b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
|
| @@ -55,7 +55,6 @@ class XMLHttpRequest;
|
|
|
| class CORE_EXPORT AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallTracker> {
|
| WTF_MAKE_NONCOPYABLE(AsyncCallTracker);
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AsyncCallTracker);
|
| WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(AsyncCallTracker);
|
| public:
|
| AsyncCallTracker(V8DebuggerAgent*, InstrumentingAgents*);
|
| @@ -113,7 +112,7 @@ private:
|
|
|
| using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<ExecutionContext>, OwnPtrWillBeMember<ExecutionContextData>>;
|
| ExecutionContextDataMap m_executionContextDataMap;
|
| - RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
|
| + V8DebuggerAgent* m_debuggerAgent;
|
| RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
|
| };
|
|
|
|
|