| Index: src/inspector/v8-debugger.h
|
| diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h
|
| index b48d5eef6c9682011ae4397bc797474ec68dfa28..ed9275395bc1eab9f664dd7e38e10dced2f70da4 100644
|
| --- a/src/inspector/v8-debugger.h
|
| +++ b/src/inspector/v8-debugger.h
|
| @@ -189,8 +189,10 @@ class V8Debugger : public v8::debug::DebugDelegate {
|
| protocol::HashMap<void*, std::weak_ptr<AsyncStackTrace>>;
|
| AsyncTaskToStackTrace m_asyncTaskStacks;
|
| AsyncTaskToStackTrace m_asyncTaskCreationStacks;
|
| - int m_maxAsyncCallStacks;
|
| protocol::HashSet<void*> m_recurringTasks;
|
| + protocol::HashMap<void*, void*> m_parentTask;
|
| +
|
| + int m_maxAsyncCallStacks;
|
| int m_maxAsyncCallStackDepth;
|
|
|
| std::vector<void*> m_currentTasks;
|
| @@ -206,8 +208,6 @@ class V8Debugger : public v8::debug::DebugDelegate {
|
| std::map<int, std::weak_ptr<StackFrame>> m_framesCache;
|
|
|
| protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap;
|
| - protocol::HashMap<void*, void*> m_parentTask;
|
| - protocol::HashMap<void*, void*> m_firstNextTask;
|
| void* m_taskWithScheduledBreak = nullptr;
|
|
|
| std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback;
|
|
|