| Index: Source/devtools/front_end/RemoteObject.js
|
| diff --git a/Source/devtools/front_end/RemoteObject.js b/Source/devtools/front_end/RemoteObject.js
|
| index 0f297b313d8bef38e80db641dd68e5123d1743d2..92cd90b3233e9a6d5a7171ea45ddd2cb82a5bd24 100644
|
| --- a/Source/devtools/front_end/RemoteObject.js
|
| +++ b/Source/devtools/front_end/RemoteObject.js
|
| @@ -124,30 +124,6 @@ WebInspector.RemoteObject.fromLocalObject = function(value)
|
| }
|
|
|
| /**
|
| - * @param {!WebInspector.DOMNode} node
|
| - * @param {string} objectGroup
|
| - * @param {function(?WebInspector.RemoteObject)} callback
|
| - */
|
| -WebInspector.RemoteObject.resolveNode = function(node, objectGroup, callback)
|
| -{
|
| - /**
|
| - * @param {?Protocol.Error} error
|
| - * @param {!RuntimeAgent.RemoteObject} object
|
| - */
|
| - function mycallback(error, object)
|
| - {
|
| - if (!callback)
|
| - return;
|
| -
|
| - if (error || !object)
|
| - callback(null);
|
| - else
|
| - callback(node.target().runtimeModel.createRemoteObject(object));
|
| - }
|
| - DOMAgent.resolveNode(node.id, objectGroup, mycallback);
|
| -}
|
| -
|
| -/**
|
| * @param {!WebInspector.RemoteObject} remoteObject
|
| * @return {string}
|
| */
|
|
|