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

Unified Diff: Source/devtools/front_end/sources/SourcesPanel.js

Issue 1098683002: [DevTools] Added Event Listeners sidebar in sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@window-listeners
Patch Set: Created 5 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: Source/devtools/front_end/sources/SourcesPanel.js
diff --git a/Source/devtools/front_end/sources/SourcesPanel.js b/Source/devtools/front_end/sources/SourcesPanel.js
index bd0aec38ab8c26bc46bf0aa7388c234e3e459e26..c6c916e05ff8c127cb09cb05f0a624f1e32a3e1b 100644
--- a/Source/devtools/front_end/sources/SourcesPanel.js
+++ b/Source/devtools/front_end/sources/SourcesPanel.js
@@ -87,6 +87,7 @@ WebInspector.SourcesPanel = function(workspaceForTest)
this.sidebarPanes.domBreakpoints = WebInspector.domBreakpointsSidebarPane.createProxy(this);
this.sidebarPanes.xhrBreakpoints = new WebInspector.XHRBreakpointsSidebarPane();
this.sidebarPanes.eventListenerBreakpoints = new WebInspector.EventListenerBreakpointsSidebarPane();
+ this.sidebarPanes.objectEventListeners = new WebInspector.ObjectEventListenersSidebarPane();
if (Runtime.experiments.isEnabled("stepIntoAsync"))
this.sidebarPanes.asyncOperationBreakpoints = new WebInspector.AsyncOperationsSidebarPane();
@@ -1151,6 +1152,7 @@ WebInspector.SourcesPanel.prototype = {
sidebarPaneStack.addPane(this.sidebarPanes.domBreakpoints);
sidebarPaneStack.addPane(this.sidebarPanes.xhrBreakpoints);
sidebarPaneStack.addPane(this.sidebarPanes.eventListenerBreakpoints);
+ sidebarPaneStack.addPane(this.sidebarPanes.objectEventListeners);
if (Runtime.experiments.isEnabled("stepIntoAsync"))
sidebarPaneStack.addPane(this.sidebarPanes.asyncOperationBreakpoints);
« no previous file with comments | « Source/devtools/front_end/sources/ObjectEventListenersSidebarPane.js ('k') | Source/devtools/front_end/sources/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698