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

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

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « Source/devtools/front_end/platform/utilities.js ('k') | Source/devtools/front_end/sdk/RuntimeModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/RemoteObject.js
diff --git a/Source/devtools/front_end/sdk/RemoteObject.js b/Source/devtools/front_end/sdk/RemoteObject.js
index 1fd92f239272afde3896dbc114396375cfbbcaa4..6c56d1a9164828ab17c0b6631b09abdba4bd951f 100644
--- a/Source/devtools/front_end/sdk/RemoteObject.js
+++ b/Source/devtools/front_end/sdk/RemoteObject.js
@@ -91,7 +91,7 @@ WebInspector.RemoteObject.prototype = {
},
/**
- * @return {!Promise.<!{properties: ?Array.<!WebInspector.RemoteObjectProperty>, internalProperties: ?Array.<!WebInspector.RemoteObjectProperty>}>}
+ * @return {!Promise<!{properties: ?Array.<!WebInspector.RemoteObjectProperty>, internalProperties: ?Array.<!WebInspector.RemoteObjectProperty>}>}
*/
getOwnPropertiesPromise: function()
{
@@ -230,9 +230,10 @@ WebInspector.RemoteObject.prototype = {
},
/**
- * @param {function(this:Object, ...)} functionDeclaration
+ * @param {function(this:Object, ...):T} functionDeclaration
* @param {!Array<!RuntimeAgent.CallArgument>|undefined} args
- * @return {!Promise<*>}
+ * @return {!Promise<T>}
+ * @template T
*/
callFunctionJSONPromise: function(functionDeclaration, args)
{
« no previous file with comments | « Source/devtools/front_end/platform/utilities.js ('k') | Source/devtools/front_end/sdk/RuntimeModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698