| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| index 9676f9360c0d2980463cb6edb445a0e50d10c416..2f845ccdd41f0c17477d2d196f81d176626b04cd 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| @@ -32,7 +32,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane = function()
|
| this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointsActiveStateChanged, this._breakpointsActiveStateChanged, this);
|
| this._breakpointsActiveStateChanged();
|
| this._update();
|
| -}
|
| +};
|
|
|
| WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
| _emptyElementContextMenu: function(event)
|
| @@ -88,7 +88,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
| */
|
| function didRequestContent(content)
|
| {
|
| - var lineNumber = uiLocation.lineNumber
|
| + var lineNumber = uiLocation.lineNumber;
|
| var columnNumber = uiLocation.columnNumber;
|
| var text = new WebInspector.Text(content || "");
|
| if (lineNumber < text.lineCount()) {
|
| @@ -274,4 +274,4 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|