| Index: Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
|
| diff --git a/Source/devtools/front_end/BreakpointManager.js b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
|
| similarity index 99%
|
| copy from Source/devtools/front_end/BreakpointManager.js
|
| copy to Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
|
| index 4424e35467b0a606888a4fd0513130bdd74b65db..d7ea3665fcde8d47afafb960bd371278e6c5df01 100644
|
| --- a/Source/devtools/front_end/BreakpointManager.js
|
| +++ b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
|
| @@ -287,7 +287,7 @@ WebInspector.BreakpointManager.prototype = {
|
| var columnNumber = parseInt(columnNumbers[j], 10);
|
| for (var k = 0; k < columnBreakpoints.length; ++k) {
|
| var breakpoint = columnBreakpoints[k];
|
| - var uiLocation = uiSourceCode.uiLocation(lineNumber, columnNumber);
|
| + var uiLocation = new WebInspector.UILocation(uiSourceCode, lineNumber, columnNumber);
|
| result.push({breakpoint: breakpoint, uiLocation: uiLocation});
|
| }
|
| }
|
| @@ -664,7 +664,7 @@ WebInspector.BreakpointManager.Breakpoint.prototype = {
|
| var uiSourceCode = this._breakpointManager._workspace.uiSourceCode(this._projectId, this._path);
|
| if (!uiSourceCode)
|
| return;
|
| - var uiLocation = uiSourceCode.uiLocation(this._lineNumber, this._columnNumber);
|
| + var uiLocation = new WebInspector.UILocation(uiSourceCode, this._lineNumber, this._columnNumber);
|
| this._uiLocations[""] = uiLocation;
|
| this._breakpointManager._uiLocationAdded(this, uiLocation);
|
| }
|
|
|