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

Side by Side Diff: src/inspector/v8-debugger-agent-impl.h

Issue 2816043006: [inspector] avoid cloning of async call chains (Closed)
Patch Set: rebased Created 3 years, 8 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 V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project 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 V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 5 #ifndef V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
6 #define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 6 #define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/base/macros.h" 10 #include "src/base/macros.h"
11 #include "src/debug/interface-types.h" 11 #include "src/debug/interface-types.h"
12 #include "src/inspector/java-script-call-frame.h" 12 #include "src/inspector/java-script-call-frame.h"
13 #include "src/inspector/protocol/Debugger.h" 13 #include "src/inspector/protocol/Debugger.h"
14 #include "src/inspector/protocol/Forward.h" 14 #include "src/inspector/protocol/Forward.h"
15 15
16 namespace v8_inspector { 16 namespace v8_inspector {
17 17
18 struct ScriptBreakpoint; 18 struct ScriptBreakpoint;
19 class JavaScriptCallFrame; 19 class JavaScriptCallFrame;
20 class PromiseTracker; 20 class PromiseTracker;
21 class V8Debugger; 21 class V8Debugger;
22 class V8DebuggerScript; 22 class V8DebuggerScript;
23 class V8InspectorImpl; 23 class V8InspectorImpl;
24 class V8InspectorSessionImpl; 24 class V8InspectorSessionImpl;
25 class V8Regex; 25 class V8Regex;
26 class V8StackTraceImpl;
27 26
28 using protocol::Maybe; 27 using protocol::Maybe;
29 using protocol::Response; 28 using protocol::Response;
30 29
31 class V8DebuggerAgentImpl : public protocol::Debugger::Backend { 30 class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
32 public: 31 public:
33 enum BreakpointSource { 32 enum BreakpointSource {
34 UserBreakpointSource, 33 UserBreakpointSource,
35 DebugCommandBreakpointSource, 34 DebugCommandBreakpointSource,
36 MonitorCommandBreakpointSource 35 MonitorCommandBreakpointSource
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 std::unique_ptr<V8Regex> m_blackboxPattern; 200 std::unique_ptr<V8Regex> m_blackboxPattern;
202 protocol::HashMap<String16, std::vector<std::pair<int, int>>> 201 protocol::HashMap<String16, std::vector<std::pair<int, int>>>
203 m_blackboxedPositions; 202 m_blackboxedPositions;
204 203
205 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); 204 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl);
206 }; 205 };
207 206
208 } // namespace v8_inspector 207 } // namespace v8_inspector
209 208
210 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 209 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698