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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js

Issue 1811853002: [DevTools] Move evaluateOnCallFrame to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/platform/v8_inspector/DebuggerScript.js
diff --git a/third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js b/third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js
index 44448964507dd6b355beafd80c8d5f2b8efcb52a..14eeaa2fef7272912e0b6b2b8a5e1ef4e00dc47d 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js
+++ b/third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js
@@ -547,9 +547,9 @@ DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror, callerFrame)
return location ? location.column : 0;
}
- function evaluate(expression, scopeExtension)
+ function evaluate(expression)
{
- return frameMirror.evaluate(expression, false, scopeExtension).value();
+ return frameMirror.evaluate(expression, false).value();
}
function restart()

Powered by Google App Engine
This is Rietveld 408576698