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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js

Issue 1950403002: Add the ability to return descedant event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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/platform/v8_inspector/injected_script_externs.js
diff --git a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
index a543e5471fce0cb173527caf9c1c03ac4a2f559a..a7d39bbfe03b6490bc7fd83432b6a1cd5ffa28f8 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
+++ b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
@@ -51,9 +51,12 @@ InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {}
/**
* @param {!EventTarget} target
+ * @param {boolean=} opt_showDescendants
+ * @param {boolean=} opt_showPassive
+ * @param {boolean=} opt_showBlocking
* @return {!Object|undefined}
*/
-InjectedScriptHostClass.prototype.getEventListeners = function(target) {}
+InjectedScriptHostClass.prototype.getEventListeners = function(target, opt_showDescendants, opt_showPassive, opt_showBlocking) {}
/**
* @param {!Function} fn

Powered by Google App Engine
This is Rietveld 408576698