| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index e0aea884e0f1abb4f95c5956cf5798094005c62c..bbf2bf46109a4db76cb8756e848ebef5c90b45e9 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -497,20 +497,20 @@ interface InspectorOverrides {
|
|
|
| interface InspectorCanvasInstrumentation {
|
|
|
| -#include "bindings/v8/ScriptObject.h"
|
| +#include "bindings/v8/ScriptValue.h"
|
|
|
| [Canvas]
|
| - ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
|
| + ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
|
|
|
| [Canvas]
|
| - ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const ScriptObject&);
|
| + ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const ScriptValue&);
|
| }
|
|
|
|
|
| interface InspectorPromiseInstrumentation {
|
|
|
| #include "bindings/v8/custom/V8PromiseCustom.h"
|
| -#include "bindings/v8/ScriptObject.h"
|
| +#include "bindings/v8/ScriptValue.h"
|
|
|
| [Debugger, Inline=FastReturn]
|
| void didPostPromiseTask([Keep] ExecutionContext*, ExecutionContextTask*, bool isResolved);
|
| @@ -525,11 +525,11 @@ interface InspectorPromiseInstrumentation {
|
| bool isPromiseTrackerEnabled(ExecutionContext*);
|
|
|
| [Debugger, Inline=FastReturn]
|
| - void didCreatePromise(ExecutionContext*, const ScriptObject& promise);
|
| + void didCreatePromise(ExecutionContext*, const ScriptValue& promise);
|
|
|
| [Debugger, Inline=FastReturn]
|
| - void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise);
|
| + void didUpdatePromiseParent(ExecutionContext*, const ScriptValue& promise, const ScriptValue& parentPromise);
|
|
|
| [Debugger, Inline=FastReturn]
|
| - void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V8PromiseCustom::PromiseState, const ScriptValue& result);
|
| + void didUpdatePromiseState(ExecutionContext*, const ScriptValue& promise, V8PromiseCustom::PromiseState, const ScriptValue& result);
|
| }
|
|
|