Index: third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js |
index fb1862735d65a79393a6444202f86de09bb182b5..5dd6a30b1fb727086d1ce736d0cb90d3391a76f9 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js |
@@ -314,14 +314,6 @@ WebInspector.RemoteObject.prototype = { |
generatorObjectDetails: function(callback) |
{ |
callback(null); |
- }, |
- |
- /** |
- * @param {function(?Array<!DebuggerAgent.CollectionEntry>)} callback |
- */ |
- collectionEntries: function(callback) |
- { |
- callback(null); |
} |
} |
@@ -894,19 +886,6 @@ WebInspector.RemoteObjectImpl.prototype = { |
this._debuggerModel.generatorObjectDetails(this, callback); |
}, |
- /** |
- * @override |
- * @param {function(?Array.<!DebuggerAgent.CollectionEntry>)} callback |
- */ |
- collectionEntries: function(callback) |
- { |
- if (!this._objectId) { |
- callback(null); |
- return; |
- } |
- this._debuggerModel.getCollectionEntries(this._objectId, callback); |
- }, |
- |
__proto__: WebInspector.RemoteObject.prototype |
}; |
@@ -1588,30 +1567,3 @@ WebInspector.RemoteFunction.prototype = { |
return this._object; |
} |
} |
- |
-/** |
- * @constructor |
- * @extends {WebInspector.LocalJSONObject} |
- * @param {*} value |
- */ |
-WebInspector.MapEntryLocalJSONObject = function(value) |
-{ |
- WebInspector.LocalJSONObject.call(this, value); |
-} |
- |
-WebInspector.MapEntryLocalJSONObject.prototype = { |
- /** |
- * @override |
- * @return {string} |
- */ |
- get description() |
- { |
- if (!this._cachedDescription) { |
- var children = this._children(); |
- this._cachedDescription = "{" + this._formatValue(children[0].value) + " => " + this._formatValue(children[1].value) + "}"; |
- } |
- return this._cachedDescription; |
- }, |
- |
- __proto__: WebInspector.LocalJSONObject.prototype |
-} |