| Index: Source/core/inspector/InjectedScript.cpp
|
| diff --git a/Source/core/inspector/InjectedScript.cpp b/Source/core/inspector/InjectedScript.cpp
|
| index ecf68e65e2624d62f50293f681fd7f2766ae49da..c6665defb0321f34c0307b61d50999c4e5009d4a 100644
|
| --- a/Source/core/inspector/InjectedScript.cpp
|
| +++ b/Source/core/inspector/InjectedScript.cpp
|
| @@ -362,15 +362,6 @@ ScriptValue InjectedScript::nodeAsScriptValue(Node* node)
|
| return InjectedScriptHost::nodeAsScriptValue(scriptState(), node);
|
| }
|
|
|
| -void InjectedScript::setLastEvaluationResult(const String& objectId)
|
| -{
|
| - ASSERT(!isEmpty());
|
| - ScriptFunctionCall setLastResultFunction(injectedScriptObject(), "setLastEvaluationResult");
|
| - setLastResultFunction.appendArgument(objectId);
|
| - RefPtr<JSONValue> result;
|
| - makeCall(setLastResultFunction, &result);
|
| -}
|
| -
|
| void InjectedScript::setCustomObjectFormatterEnabled(bool enabled)
|
| {
|
| ASSERT(!isEmpty());
|
|
|