| Index: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| index 61f5f58c282f89bbfabff63c8510ade70421aebc..d8fa7126b96a79200ab6089ea39126e41824eb70 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -320,29 +320,6 @@ WebInspector.DebuggerModel.prototype = {
|
| },
|
|
|
| /**
|
| - * @param {string} objectId
|
| - * @param {function(?Array.<!DebuggerAgent.CollectionEntry>)} callback
|
| - */
|
| - getCollectionEntries: function(objectId, callback)
|
| - {
|
| - this._agent.getCollectionEntries(objectId, innerCallback);
|
| -
|
| - /**
|
| - * @param {?Protocol.Error} error
|
| - * @param {?Array.<!DebuggerAgent.CollectionEntry>} response
|
| - */
|
| - function innerCallback(error, response)
|
| - {
|
| - if (error) {
|
| - console.error(error);
|
| - callback(null);
|
| - return;
|
| - }
|
| - callback(response);
|
| - }
|
| - },
|
| -
|
| - /**
|
| * @param {!DebuggerAgent.BreakpointId} breakpointId
|
| * @param {!DebuggerAgent.Location} location
|
| */
|
|
|