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

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

Issue 2122423002: [DevTools] Remove functionDetails from protocol.json (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-generator-details-from-protocol
Patch Set: a 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 const Maybe<bool>& inPreview, 85 const Maybe<bool>& inPreview,
86 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, 86 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames,
87 Maybe<bool>* optOutStackChanged, 87 Maybe<bool>* optOutStackChanged,
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*,
96 const String16& functionId,
97 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override;
98 void pause(ErrorString*) override; 95 void pause(ErrorString*) override;
99 void resume(ErrorString*) override; 96 void resume(ErrorString*) override;
100 void stepOver(ErrorString*) override; 97 void stepOver(ErrorString*) override;
101 void stepInto(ErrorString*) override; 98 void stepInto(ErrorString*) override;
102 void stepOut(ErrorString*) override; 99 void stepOut(ErrorString*) override;
103 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ; 100 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ;
104 void evaluateOnCallFrame(ErrorString*, 101 void evaluateOnCallFrame(ErrorString*,
105 const String16& callFrameId, 102 const String16& callFrameId,
106 const String16& expression, 103 const String16& expression,
107 const Maybe<String16>& objectGroup, 104 const Maybe<String16>& objectGroup,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 bool m_skipAllPauses; 210 bool m_skipAllPauses;
214 211
215 std::unique_ptr<V8Regex> m_blackboxPattern; 212 std::unique_ptr<V8Regex> m_blackboxPattern;
216 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo sitions; 213 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo sitions;
217 }; 214 };
218 215
219 } // namespace blink 216 } // namespace blink
220 217
221 218
222 #endif // V8DebuggerAgentImpl_h 219 #endif // V8DebuggerAgentImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698