Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js

Issue 2102453003: [DevTools] Move collectionEntries to internalProperties in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
*/

Powered by Google App Engine
This is Rietveld 408576698