| 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 #include "platform/v8_inspector/V8DebuggerAgentImpl.h" | 5 #include "platform/v8_inspector/V8DebuggerAgentImpl.h" |
| 6 | 6 |
| 7 #include "platform/inspector_protocol/Parser.h" | |
| 8 #include "platform/inspector_protocol/String16.h" | |
| 9 #include "platform/inspector_protocol/Values.h" | |
| 10 #include "platform/v8_inspector/InjectedScript.h" | 7 #include "platform/v8_inspector/InjectedScript.h" |
| 11 #include "platform/v8_inspector/InspectedContext.h" | 8 #include "platform/v8_inspector/InspectedContext.h" |
| 12 #include "platform/v8_inspector/JavaScriptCallFrame.h" | 9 #include "platform/v8_inspector/JavaScriptCallFrame.h" |
| 13 #include "platform/v8_inspector/RemoteObjectId.h" | 10 #include "platform/v8_inspector/RemoteObjectId.h" |
| 14 #include "platform/v8_inspector/ScriptBreakpoint.h" | 11 #include "platform/v8_inspector/ScriptBreakpoint.h" |
| 15 #include "platform/v8_inspector/V8Debugger.h" | 12 #include "platform/v8_inspector/V8Debugger.h" |
| 16 #include "platform/v8_inspector/V8DebuggerScript.h" | 13 #include "platform/v8_inspector/V8DebuggerScript.h" |
| 17 #include "platform/v8_inspector/V8InspectorImpl.h" | 14 #include "platform/v8_inspector/V8InspectorImpl.h" |
| 18 #include "platform/v8_inspector/V8InspectorSessionImpl.h" | 15 #include "platform/v8_inspector/V8InspectorSessionImpl.h" |
| 19 #include "platform/v8_inspector/V8Regex.h" | 16 #include "platform/v8_inspector/V8Regex.h" |
| (...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 { | 1178 { |
| 1182 if (!enabled()) | 1179 if (!enabled()) |
| 1183 return; | 1180 return; |
| 1184 m_scheduledDebuggerStep = NoStep; | 1181 m_scheduledDebuggerStep = NoStep; |
| 1185 m_scripts.clear(); | 1182 m_scripts.clear(); |
| 1186 m_blackboxedPositions.clear(); | 1183 m_blackboxedPositions.clear(); |
| 1187 m_breakpointIdToDebuggerBreakpointIds.clear(); | 1184 m_breakpointIdToDebuggerBreakpointIds.clear(); |
| 1188 } | 1185 } |
| 1189 | 1186 |
| 1190 } // namespace blink | 1187 } // namespace blink |
| OLD | NEW |