Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698