| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 8f5788534c55d5ca3a39619770d70316599d89c0..b7934b678f66b806f81d66b6ea3f20e7d19317db 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -276,15 +276,6 @@ WebInspector.SourcesPanel.prototype = {
|
| this.sidebarPanes.callstack.update(details);
|
|
|
| /**
|
| - * @param {!Element} element
|
| - * @this {WebInspector.SourcesPanel}
|
| - */
|
| - function didCreateBreakpointHitStatusMessage(element)
|
| - {
|
| - this.sidebarPanes.callstack.setStatus(element);
|
| - }
|
| -
|
| - /**
|
| * @param {!WebInspector.LiveLocation} liveLocation
|
| * @this {WebInspector.SourcesPanel}
|
| */
|
| @@ -302,7 +293,7 @@ WebInspector.SourcesPanel.prototype = {
|
|
|
| if (details.reason === WebInspector.DebuggerModel.BreakReason.DOM) {
|
| WebInspector.domBreakpointsSidebarPane.highlightBreakpoint(details.auxData);
|
| - WebInspector.domBreakpointsSidebarPane.createBreakpointHitStatusMessage(details, didCreateBreakpointHitStatusMessage.bind(this));
|
| + this.sidebarPanes.callstack.setStatus(WebInspector.domBreakpointsSidebarPane.createBreakpointHitStatusMessage(details));
|
| } else if (details.reason === WebInspector.DebuggerModel.BreakReason.EventListener) {
|
| var eventName = details.auxData["eventName"];
|
| var targetName = details.auxData["targetName"];
|
|
|