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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js

Issue 2629073004: ac (Closed)
Patch Set: Created 3 years, 11 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/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..b27be90238dc95281c1bad19a8880eb6896d8c23 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
@@ -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);
}
/**
@@ -571,7 +571,7 @@ Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame {
var functionLocation = callFrame.functionLocation();
if (localScope && functionLocation) {
Sources.SourceMapNamesResolver.resolveScopeInObject(localScope)
- .getAllProperties(false, this._prepareScopeVariables.bind(this, callFrame));
+ .getAllProperties(false, false, this._prepareScopeVariables.bind(this, callFrame));
}
if (this._clearValueWidgetsTimer) {
@@ -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(

Powered by Google App Engine
This is Rietveld 408576698