| Index: Source/core/inspector/InjectedScript.cpp
|
| diff --git a/Source/core/inspector/InjectedScript.cpp b/Source/core/inspector/InjectedScript.cpp
|
| index c6665defb0321f34c0307b61d50999c4e5009d4a..087fd497180de0ed87ffe22f8e75f0ee4fe63810 100644
|
| --- a/Source/core/inspector/InjectedScript.cpp
|
| +++ b/Source/core/inspector/InjectedScript.cpp
|
| @@ -336,15 +336,6 @@ ScriptValue InjectedScript::findObjectById(const String& objectId) const
|
| return resultValue;
|
| }
|
|
|
| -void InjectedScript::inspectNode(Node* node)
|
| -{
|
| - ASSERT(!isEmpty());
|
| - ScriptFunctionCall function(injectedScriptObject(), "inspectNode");
|
| - function.appendArgument(nodeAsScriptValue(node));
|
| - RefPtr<JSONValue> result;
|
| - makeCall(function, &result);
|
| -}
|
| -
|
| void InjectedScript::releaseObjectGroup(const String& objectGroup)
|
| {
|
| ASSERT(!isEmpty());
|
|
|