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

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

Issue 1786243002: [DevTools] Move restartFrame and setCallFrameVariableValue to V8DebuggerAgent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dgozman-patch
Patch Set: Created 4 years, 9 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/Dispatcher.h" 9 #include "platform/inspector_protocol/Dispatcher.h"
10 #include "platform/inspector_protocol/Frontend.h" 10 #include "platform/inspector_protocol/Frontend.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole, 129 const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole,
130 const Maybe<bool>& returnByValue, 130 const Maybe<bool>& returnByValue,
131 const Maybe<bool>& generatePreview, 131 const Maybe<bool>& generatePreview,
132 OwnPtr<protocol::Runtime::RemoteObject>* result, 132 OwnPtr<protocol::Runtime::RemoteObject>* result,
133 Maybe<bool>* wasThrown, 133 Maybe<bool>* wasThrown,
134 Maybe<protocol::Runtime::ExceptionDetails>*) override; 134 Maybe<protocol::Runtime::ExceptionDetails>*) override;
135 void setVariableValue(ErrorString*, 135 void setVariableValue(ErrorString*,
136 int scopeNumber, 136 int scopeNumber,
137 const String16& variableName, 137 const String16& variableName,
138 PassOwnPtr<protocol::Runtime::CallArgument> newValue, 138 PassOwnPtr<protocol::Runtime::CallArgument> newValue,
139 const Maybe<String16>& callFrame, 139 const String16& callFrame) override;
140 const Maybe<String16>& functionObjectId) override;
141 void setAsyncCallStackDepth(ErrorString*, int depth) override; 140 void setAsyncCallStackDepth(ErrorString*, int depth) override;
142 void enablePromiseTracker(ErrorString*, 141 void enablePromiseTracker(ErrorString*,
143 const Maybe<bool>& captureStacks) override; 142 const Maybe<bool>& captureStacks) override;
144 void disablePromiseTracker(ErrorString*) override; 143 void disablePromiseTracker(ErrorString*) override;
145 void getPromiseById(ErrorString*, 144 void getPromiseById(ErrorString*,
146 int promiseId, 145 int promiseId,
147 const Maybe<String16>& objectGroup, 146 const Maybe<String16>& objectGroup,
148 OwnPtr<protocol::Runtime::RemoteObject>* promise) override; 147 OwnPtr<protocol::Runtime::RemoteObject>* promise) override;
149 void flushAsyncOperationEvents(ErrorString*) override; 148 void flushAsyncOperationEvents(ErrorString*) override;
150 void setAsyncOperationBreakpoint(ErrorString*, int operationId) override; 149 void setAsyncOperationBreakpoint(ErrorString*, int operationId) override;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 int m_currentAsyncOperationId; 276 int m_currentAsyncOperationId;
278 bool m_pendingTraceAsyncOperationCompleted; 277 bool m_pendingTraceAsyncOperationCompleted;
279 bool m_startingStepIntoAsync; 278 bool m_startingStepIntoAsync;
280 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo xedPositions; 279 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo xedPositions;
281 }; 280 };
282 281
283 } // namespace blink 282 } // namespace blink
284 283
285 284
286 #endif // V8DebuggerAgentImpl_h 285 #endif // V8DebuggerAgentImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698