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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
index 3d5bf5c5820fdeee32c4ec0968a14fe9d6ded721..d3a7977b077d7e2640edc9e430d4ea2da9f9ebce 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
@@ -221,6 +221,17 @@ private:
void internalSetAsyncCallStackDepth(int);
void increaseCachedSkipStackGeneration();
+ void setCallFrameVariableValue(ErrorString*,
+ int scopeNumber,
+ const String16& variableName,
+ PassOwnPtr<protocol::Runtime::CallArgument> newValue,
+ const Maybe<String16>& callFrameId);
+ void setFunctionVariableValue(ErrorString*,
+ int scopeNumber,
+ const String16& variableName,
+ PassOwnPtr<protocol::Runtime::CallArgument> newValueArgument,
+ const Maybe<String16>& functionObjectId);
+
using ScriptsMap = protocol::HashMap<String16, V8DebuggerScript>;
using BreakpointIdToDebuggerBreakpointIdsMap = protocol::HashMap<String16, protocol::Vector<String16>>;
using DebugServerBreakpointToBreakpointIdAndSourceMap = protocol::HashMap<String16, std::pair<String16, BreakpointSource>>;

Powered by Google App Engine
This is Rietveld 408576698