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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp

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/core/inspector/InspectorDebuggerAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
index 4621ec2c859c46844caf8b93a8c1e0f6882b6c53..d5044590868dcfaed6786a65a692a2a8c6885695 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -242,10 +242,9 @@ void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString,
void InspectorDebuggerAgent::setVariableValue(ErrorString* errorString, int inScopeNumber,
const String16& inVariableName,
PassOwnPtr<protocol::Runtime::CallArgument> inNewValue,
- const Maybe<String16>& inCallFrameId,
- const Maybe<String16>& inFunctionObjectId)
+ const String16& inCallFrameId)
{
- m_v8DebuggerAgent->setVariableValue(errorString, inScopeNumber, inVariableName, inNewValue, inCallFrameId, inFunctionObjectId);
+ m_v8DebuggerAgent->setVariableValue(errorString, inScopeNumber, inVariableName, inNewValue, inCallFrameId);
}
void InspectorDebuggerAgent::getBacktrace(ErrorString* errorString,

Powered by Google App Engine
This is Rietveld 408576698