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

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

Issue 2112673003: [DevTools] Move suspended generator location to internal properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 5 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/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 5dd6a30b1fb727086d1ce736d0cb90d3391a76f9..f59a6b0d20f6df0bd195612973bb19b63c92062c 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
@@ -306,14 +306,6 @@ WebInspector.RemoteObject.prototype = {
{
this.functionDetails(success);
}
- },
-
- /**
- * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} callback
- */
- generatorObjectDetails: function(callback)
- {
- callback(null);
}
}
@@ -877,15 +869,6 @@ WebInspector.RemoteObjectImpl.prototype = {
this._debuggerModel.functionDetails(this, callback);
},
- /**
- * @override
- * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} callback
- */
- generatorObjectDetails: function(callback)
- {
- this._debuggerModel.generatorObjectDetails(this, callback);
- },
-
__proto__: WebInspector.RemoteObject.prototype
};

Powered by Google App Engine
This is Rietveld 408576698