| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 V8DebuggerAgentImpl_h | 5 #ifndef V8DebuggerAgentImpl_h |
| 6 #define V8DebuggerAgentImpl_h | 6 #define V8DebuggerAgentImpl_h |
| 7 | 7 |
| 8 #include "platform/inspector_protocol/Collections.h" | 8 #include "platform/inspector_protocol/Collections.h" |
| 9 #include "platform/inspector_protocol/String16.h" | 9 #include "platform/inspector_protocol/String16.h" |
| 10 #include "platform/inspector_protocol/TypeBuilder.h" | |
| 11 #include "platform/v8_inspector/V8DebuggerImpl.h" | 10 #include "platform/v8_inspector/V8DebuggerImpl.h" |
| 11 #include "platform/v8_inspector/protocol/Debugger.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class JavaScriptCallFrame; | 15 class JavaScriptCallFrame; |
| 16 class PromiseTracker; | 16 class PromiseTracker; |
| 17 class V8InspectorSessionImpl; | 17 class V8InspectorSessionImpl; |
| 18 class V8Regex; | 18 class V8Regex; |
| 19 class V8StackTraceImpl; | 19 class V8StackTraceImpl; |
| 20 | 20 |
| 21 namespace protocol { | 21 namespace protocol { |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 protocol::Vector<void*> m_currentTasks; | 234 protocol::Vector<void*> m_currentTasks; |
| 235 protocol::Vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; | 235 protocol::Vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; |
| 236 std::unique_ptr<V8Regex> m_blackboxPattern; | 236 std::unique_ptr<V8Regex> m_blackboxPattern; |
| 237 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo
xedPositions; | 237 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo
xedPositions; |
| 238 }; | 238 }; |
| 239 | 239 |
| 240 } // namespace blink | 240 } // namespace blink |
| 241 | 241 |
| 242 | 242 |
| 243 #endif // V8DebuggerAgentImpl_h | 243 #endif // V8DebuggerAgentImpl_h |
| OLD | NEW |