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

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

Issue 2102453003: [DevTools] Move collectionEntries to internalProperties in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 const String16& callFrameId, 89 const String16& callFrameId,
90 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall Frames, 90 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall Frames,
91 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override; 91 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override;
92 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip tSource) override; 92 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip tSource) override;
93 void getFunctionDetails(ErrorString*, 93 void getFunctionDetails(ErrorString*,
94 const String16& functionId, 94 const String16& functionId,
95 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override; 95 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override;
96 void getGeneratorObjectDetails(ErrorString*, 96 void getGeneratorObjectDetails(ErrorString*,
97 const String16& objectId, 97 const String16& objectId,
98 std::unique_ptr<protocol::Debugger::GeneratorObjectDetails>*) override; 98 std::unique_ptr<protocol::Debugger::GeneratorObjectDetails>*) override;
99 void getCollectionEntries(ErrorString*,
100 const String16& objectId,
101 std::unique_ptr<protocol::Array<protocol::Debugger::CollectionEntry>>*) override;
102 void pause(ErrorString*) override; 99 void pause(ErrorString*) override;
103 void resume(ErrorString*) override; 100 void resume(ErrorString*) override;
104 void stepOver(ErrorString*) override; 101 void stepOver(ErrorString*) override;
105 void stepInto(ErrorString*) override; 102 void stepInto(ErrorString*) override;
106 void stepOut(ErrorString*) override; 103 void stepOut(ErrorString*) override;
107 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ; 104 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override ;
108 void evaluateOnCallFrame(ErrorString*, 105 void evaluateOnCallFrame(ErrorString*,
109 const String16& callFrameId, 106 const String16& callFrameId,
110 const String16& expression, 107 const String16& expression,
111 const Maybe<String16>& objectGroup, 108 const Maybe<String16>& objectGroup,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 bool m_skipAllPauses; 214 bool m_skipAllPauses;
218 215
219 std::unique_ptr<V8Regex> m_blackboxPattern; 216 std::unique_ptr<V8Regex> m_blackboxPattern;
220 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo xedPositions; 217 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo xedPositions;
221 }; 218 };
222 219
223 } // namespace blink 220 } // namespace blink
224 221
225 222
226 #endif // V8DebuggerAgentImpl_h 223 #endif // V8DebuggerAgentImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698