| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
|
| index e47c962aab05da7a7d9beb7b1d08802a0bb5fe85..b0006e5bdce566a52200cbc14ef2e847d5a60c63 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
|
| @@ -51,9 +51,14 @@ InspectorTest.initializeDefaultMappingOnTarget = function(target)
|
| }
|
|
|
| InspectorTest.DebuggerModelMock = class extends SDK.SDKModel {
|
| + sourceMapManager() {
|
| + return this._sourceMapManager;
|
| + }
|
| +
|
| constructor(target)
|
| {
|
| super(target);
|
| + this._sourceMapManager = new SDK.SourceMapManager();
|
| this._target = target;
|
| this._breakpointResolvedEventTarget = new Common.Object();
|
| this._scripts = {};
|
|
|