Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1078)

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js

Issue 2781923002: [WIP] DevTools: user SourceMapManager in Debugger (Closed)
Patch Set: works great Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = {};

Powered by Google App Engine
This is Rietveld 408576698