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

Unified Diff: Source/devtools/front_end/platform/utilities.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
Index: Source/devtools/front_end/platform/utilities.js
diff --git a/Source/devtools/front_end/platform/utilities.js b/Source/devtools/front_end/platform/utilities.js
index a112650d776b2d565311a828a81d7cdcd1db127b..7e972bf8de041cd79b1ddb4dc9ee099be5d599ba 100644
--- a/Source/devtools/front_end/platform/utilities.js
+++ b/Source/devtools/front_end/platform/utilities.js
@@ -1499,16 +1499,3 @@ Promise.prototype.catchException = function(defaultValue) {
return defaultValue;
});
}
-
-/**
- * @param {!Object} object
- * @param {*} propertyName
- * @param {T} result
- * @return {T}
- * @template T
- */
-function storeResultTo(object, propertyName, result)
-{
- object[propertyName] = result;
- return result;
-}
« no previous file with comments | « Source/devtools/front_end/elements/EventListenersWidget.js ('k') | Source/devtools/front_end/sdk/RemoteObject.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698