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

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 0b1114caee4fdd02f18806c939882cdc9693f5e8..b5867e7d24044334af934968ac88d5344b526bb6 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -241,10 +241,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