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); |