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

Unified Diff: Source/devtools/front_end/components/EventListenersView.js

Issue 1187303002: [DevTools] Added missing EventListenersView addEmptyHolderIfNeeded (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | Source/devtools/front_end/elements/EventListenersWidget.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/components/EventListenersView.js
diff --git a/Source/devtools/front_end/components/EventListenersView.js b/Source/devtools/front_end/components/EventListenersView.js
index 5b50bfaf6c9bd14d4836cf89dbd7bd8e7e3a7a2e..e3bf926111d538c13b8cb6e9c3707aa72a153a7b 100644
--- a/Source/devtools/front_end/components/EventListenersView.js
+++ b/Source/devtools/front_end/components/EventListenersView.js
@@ -41,7 +41,7 @@ WebInspector.EventListenersView.prototype = {
{
this.reset();
for (var i = 0; i < listeners.length; ++i)
- this.addObjectEventListeners(objects[i], listeners[i]);
+ this._addObjectEventListeners(objects[i], listeners[i]);
this.addEmptyHolderIfNeeded();
this._eventListenersArrivedForTest();
}
@@ -51,7 +51,7 @@ WebInspector.EventListenersView.prototype = {
* @param {!WebInspector.RemoteObject} object
* @param {?Array<!WebInspector.EventListener>} eventListeners
*/
- addObjectEventListeners: function(object, eventListeners)
+ _addObjectEventListeners: function(object, eventListeners)
{
if (!eventListeners)
return;
« no previous file with comments | « no previous file | Source/devtools/front_end/elements/EventListenersWidget.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698