| Index: third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js b/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| index 977685711778379b32d1a804f7e2d3a00cb5fc43..0a917c26e724ce9dee5b0292be15b44bfd07888c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| @@ -923,6 +923,8 @@ Bindings.BreakpointManager.ModelBreakpoint = class {
|
| */
|
| _addResolvedLocation(location) {
|
| var uiLocation = this._debuggerWorkspaceBinding.rawLocationToUILocation(location);
|
| + if (!uiLocation)
|
| + return false;
|
| var breakpoint = this._breakpoint._breakpointManager.findBreakpoint(
|
| uiLocation.uiSourceCode, uiLocation.lineNumber, uiLocation.columnNumber);
|
| if (breakpoint && breakpoint !== this._breakpoint) {
|
|
|