Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
index 817a396fae00ec8d1c7d98d71718d6874d500120..e5c0653bb4f0b9f79c0707331a949bfe0218133b 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
@@ -31,7 +31,7 @@ |
/** |
* @unrestricted |
*/ |
-Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame { |
+Sources.JavaScriptSourceFrame = class extends SourceFrame.UISourceCodeFrame { |
/** |
* @param {!Workspace.UISourceCode} uiSourceCode |
*/ |
@@ -81,7 +81,7 @@ Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame { |
this._valueWidgets = new Map(); |
this.onBindingChanged(); |
Bindings.debuggerWorkspaceBinding.addEventListener( |
- Bindings.DebuggerWorkspaceBinding.Events.SourceMappingChanged, this._onSourceMappingChanged, this); |
+ Bindings.DebuggerWorkspaceBinding.Events.SourceMappingChanged, this._onSourceMappingChanged, this); |
} |
/** |
@@ -1294,7 +1294,7 @@ Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame { |
*/ |
dispose() { |
Bindings.debuggerWorkspaceBinding.removeEventListener( |
- Bindings.DebuggerWorkspaceBinding.Events.SourceMappingChanged, this._onSourceMappingChanged, this); |
+ Bindings.DebuggerWorkspaceBinding.Events.SourceMappingChanged, this._onSourceMappingChanged, this); |
this._breakpointManager.removeEventListener( |
Bindings.BreakpointManager.Events.BreakpointAdded, this._breakpointAdded, this); |
this._breakpointManager.removeEventListener( |