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

Unified Diff: Source/core/inspector/JavaScriptCallFrame.idl

Issue 644403003: DevTools: Fix __commandLineAPI is not defined error and remove the with- hack for eval on call fram… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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: Source/core/inspector/JavaScriptCallFrame.idl
diff --git a/Source/core/inspector/JavaScriptCallFrame.idl b/Source/core/inspector/JavaScriptCallFrame.idl
index f4482d1efd2eff4c4e3cf375efee49ca0d24fa59..b17fd291ad6a6b095f8a94a9c0f6632468f0212e 100644
--- a/Source/core/inspector/JavaScriptCallFrame.idl
+++ b/Source/core/inspector/JavaScriptCallFrame.idl
@@ -36,7 +36,7 @@
const unsigned short CLOSURE_SCOPE = 3;
const unsigned short CATCH_SCOPE = 4;
- [Custom] void evaluateWithExceptionDetails(DOMString script);
+ [CallWith=ScriptState] any evaluateWithExceptionDetails(DOMString script, [Default=Undefined] optional object scopeExtension);
[Custom] any restart();
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
@@ -46,7 +46,7 @@
readonly attribute long sourceID;
readonly attribute long line;
readonly attribute long column;
- [Custom=Getter] readonly attribute object scopeChain;
+ [Custom=Getter] readonly attribute object[] scopeChain;
[Custom] unsigned short scopeType(long scopeIndex);
[Custom=Getter] readonly attribute object thisObject;
readonly attribute DOMString stepInPositions;

Powered by Google App Engine
This is Rietveld 408576698