| 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 34f65e47650d24fc1f9561cc21614b9d4c0861d6..7b5a1923d2c9cb44fb41a7169f2a442c9c8e9d91 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js
|
| @@ -278,7 +278,8 @@ Bindings.BreakpointManager = class extends Common.Object {
|
| debuggerModel, uiSourceCode, textRange.endLine, textRange.endColumn);
|
| if (!endLocation)
|
| continue;
|
| - return debuggerModel.getPossibleBreakpoints(startLocation, endLocation).then(toUILocations.bind(this));
|
| + return debuggerModel.getPossibleBreakpoints(startLocation, endLocation, /* restrictToFunction */ false)
|
| + .then(toUILocations.bind(this));
|
| }
|
| return Promise.resolve([]);
|
|
|
|
|