| 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,
|
|
|