| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium 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 V8Debugger_h | 5 #ifndef V8Debugger_h |
| 6 #define V8Debugger_h | 6 #define V8Debugger_h |
| 7 | 7 |
| 8 #include "platform/inspector_protocol/Allocator.h" | 8 #include "platform/inspector_protocol/InspectorProtocol.h" |
| 9 #include "platform/inspector_protocol/Maybe.h" | |
| 10 #include "platform/inspector_protocol/Platform.h" | |
| 11 #include "platform/v8_inspector/JavaScriptCallFrame.h" | 9 #include "platform/v8_inspector/JavaScriptCallFrame.h" |
| 12 #include "platform/v8_inspector/V8DebuggerScript.h" | 10 #include "platform/v8_inspector/V8DebuggerScript.h" |
| 13 #include "platform/v8_inspector/protocol/Runtime.h" | 11 #include "platform/v8_inspector/protocol/Runtime.h" |
| 14 #include "platform/v8_inspector/public/V8ContextInfo.h" | 12 #include "platform/v8_inspector/public/V8ContextInfo.h" |
| 15 | 13 |
| 16 #include <v8-debug.h> | 14 #include <v8-debug.h> |
| 17 #include <v8.h> | 15 #include <v8.h> |
| 18 #include <vector> | 16 #include <vector> |
| 19 | 17 |
| 20 namespace blink { | 18 namespace blink { |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 protocol::HashSet<void*> m_recurringTasks; | 120 protocol::HashSet<void*> m_recurringTasks; |
| 123 int m_maxAsyncCallStackDepth; | 121 int m_maxAsyncCallStackDepth; |
| 124 std::vector<void*> m_currentTasks; | 122 std::vector<void*> m_currentTasks; |
| 125 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; | 123 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; |
| 126 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; | 124 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; |
| 127 }; | 125 }; |
| 128 | 126 |
| 129 } // namespace blink | 127 } // namespace blink |
| 130 | 128 |
| 131 #endif // V8Debugger_h | 129 #endif // V8Debugger_h |
| OLD | NEW |