| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_INSPECTOR_V8DEBUGGER_H_ | 5 #ifndef V8_INSPECTOR_V8DEBUGGER_H_ |
| 6 #define V8_INSPECTOR_V8DEBUGGER_H_ | 6 #define V8_INSPECTOR_V8DEBUGGER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "src/base/macros.h" | 10 #include "src/base/macros.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 using AsyncTaskToStackTrace = | 146 using AsyncTaskToStackTrace = |
| 147 protocol::HashMap<void*, std::unique_ptr<V8StackTraceImpl>>; | 147 protocol::HashMap<void*, std::unique_ptr<V8StackTraceImpl>>; |
| 148 AsyncTaskToStackTrace m_asyncTaskStacks; | 148 AsyncTaskToStackTrace m_asyncTaskStacks; |
| 149 protocol::HashSet<void*> m_recurringTasks; | 149 protocol::HashSet<void*> m_recurringTasks; |
| 150 int m_maxAsyncCallStackDepth; | 150 int m_maxAsyncCallStackDepth; |
| 151 std::vector<void*> m_currentTasks; | 151 std::vector<void*> m_currentTasks; |
| 152 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; | 152 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; |
| 153 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; | 153 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; |
| 154 | 154 |
| 155 PauseOnExceptionsState m_pauseOnExceptionsState; |
| 156 |
| 155 DISALLOW_COPY_AND_ASSIGN(V8Debugger); | 157 DISALLOW_COPY_AND_ASSIGN(V8Debugger); |
| 156 }; | 158 }; |
| 157 | 159 |
| 158 } // namespace v8_inspector | 160 } // namespace v8_inspector |
| 159 | 161 |
| 160 #endif // V8_INSPECTOR_V8DEBUGGER_H_ | 162 #endif // V8_INSPECTOR_V8DEBUGGER_H_ |
| OLD | NEW |