| 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;
 | 
| 
 |