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

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

Issue 1950403002: Add the ability to return descedant event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address pfeldman's comments 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/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 db5021ec290bf34878827f1fb7c43ee639d19fb8..8025ce34b37db0d93d62575ff4b5d5dc31f48f3f 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
@@ -572,7 +572,7 @@ WebInspector.RemoteObjectImpl.prototype = {
{
if (!result.wasThrown && result.object)
removeFunction = result.object;
- this.target().domdebuggerAgent().getEventListeners(this._objectId, mycallback.bind(this));
+ this.target().domdebuggerAgent().getEventListeners(this._objectId, false, mycallback.bind(this));
pfeldman 2016/06/01 22:40:30 UI should pass the option here.
}
/**

Powered by Google App Engine
This is Rietveld 408576698