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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js

Issue 1786243002: [DevTools] Move restartFrame and setCallFrameVariableValue to V8DebuggerAgent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dgozman-patch
Patch Set: Created 4 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/Source/devtools/front_end/components/ObjectPropertiesSection.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
index 9592a28e7652a09543fbe426f7931ca05f7caaa2..da2f5e77e34015c4cb73dcea3ac66ceb7db467e1 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
@@ -630,7 +630,7 @@ WebInspector.FunctionScopeMainTreeElement.prototype = {
property.parentObject = null;
this.appendChild(new WebInspector.ObjectPropertyTreeElement(property));
} else {
- var scopeRef = new WebInspector.ScopeRef(i, undefined, this._remoteObject.objectId);
+ var scopeRef = new WebInspector.ScopeRef(i, undefined);
var remoteObject = runtimeModel.createScopeRemoteObject(scope.object, scopeRef);
var scopeTreeElement = new WebInspector.ScopeTreeElement(title, remoteObject);
this.appendChild(scopeTreeElement);

Powered by Google App Engine
This is Rietveld 408576698