| 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/InspectorProtocol.h" |
| 9 #include "platform/inspector_protocol/String16.h" | |
| 10 #include "platform/v8_inspector/JavaScriptCallFrame.h" | 9 #include "platform/v8_inspector/JavaScriptCallFrame.h" |
| 11 #include "platform/v8_inspector/protocol/Debugger.h" | 10 #include "platform/v8_inspector/protocol/Debugger.h" |
| 12 | 11 |
| 13 #include <vector> | 12 #include <vector> |
| 14 | 13 |
| 15 namespace blink { | 14 namespace blink { |
| 16 | 15 |
| 17 struct ScriptBreakpoint; | 16 struct ScriptBreakpoint; |
| 18 class JavaScriptCallFrame; | 17 class JavaScriptCallFrame; |
| 19 class PromiseTracker; | 18 class PromiseTracker; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 bool m_skipAllPauses; | 208 bool m_skipAllPauses; |
| 210 | 209 |
| 211 std::unique_ptr<V8Regex> m_blackboxPattern; | 210 std::unique_ptr<V8Regex> m_blackboxPattern; |
| 212 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; | 211 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 } // namespace blink | 214 } // namespace blink |
| 216 | 215 |
| 217 | 216 |
| 218 #endif // V8DebuggerAgentImpl_h | 217 #endif // V8DebuggerAgentImpl_h |
| OLD | NEW |