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

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

Issue 2112673003: [DevTools] Move suspended generator location to internal properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 5 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 #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/v8_inspector/V8DebuggerImpl.h" 10 #include "platform/v8_inspector/V8DebuggerImpl.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, 88 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace,
89 Maybe<protocol::Debugger::SetScriptSourceError>* optOutCompileError) ove rride; 89 Maybe<protocol::Debugger::SetScriptSourceError>* optOutCompileError) ove rride;
90 void restartFrame(ErrorString*, 90 void restartFrame(ErrorString*,
91 const String16& callFrameId, 91 const String16& callFrameId,
92 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall Frames, 92 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall Frames,
93 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override; 93 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override;
94 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip tSource) override; 94 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip tSource) override;
95 void getFunctionDetails(ErrorString*, 95 void getFunctionDetails(ErrorString*,
96 const String16& functionId, 96 const String16& functionId,
97 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override; 97 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override;
98 void getGeneratorObjectDetails(ErrorString*,
99 const String16& objectId,
100 std::unique_ptr<protocol::Debugger::GeneratorObjectDetails>*) override;
101 void pause(ErrorString*) override; 98 void pause(ErrorString*) override;
102 void resume(ErrorString*) override; 99 void resume(ErrorString*) override;
103 void stepOver(ErrorString*) override; 100 void stepOver(ErrorString*) override;
104 void stepInto(ErrorString*) override; 101 void stepInto(ErrorString*) override;
105 void stepOut(ErrorString*) override; 102 void stepOut(ErrorString*) override;
106 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ; 103 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ;
107 void evaluateOnCallFrame(ErrorString*, 104 void evaluateOnCallFrame(ErrorString*,
108 const String16& callFrameId, 105 const String16& callFrameId,
109 const String16& expression, 106 const String16& expression,
110 const Maybe<String16>& objectGroup, 107 const Maybe<String16>& objectGroup,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 bool m_skipAllPauses; 213 bool m_skipAllPauses;
217 214
218 std::unique_ptr<V8Regex> m_blackboxPattern; 215 std::unique_ptr<V8Regex> m_blackboxPattern;
219 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo sitions; 216 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo sitions;
220 }; 217 };
221 218
222 } // namespace blink 219 } // namespace blink
223 220
224 221
225 #endif // V8DebuggerAgentImpl_h 222 #endif // V8DebuggerAgentImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698