| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index ba362489f3f39754c50158dbd975050bab993d02..6b4638340cc3467dc0741553977dda7fd187caef 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -138,10 +138,10 @@ interface InspectorInstrumentation {
|
| void didRemoveTimer([Keep] ExecutionContext*, int timerId);
|
|
|
| [Debugger, Inline=FastReturn]
|
| - InspectorInstrumentationCookie willCallFunction(ExecutionContext*, const DevToolsFunctionInfo&);
|
| + InspectorInstrumentationCookie willExecuteScript(ExecutionContext*, int scriptId);
|
|
|
| [Debugger, Inline=FastReturn]
|
| - void didCallFunction(const InspectorInstrumentationCookie&);
|
| + void didExecuteScript(const InspectorInstrumentationCookie&);
|
|
|
| [AsyncCallTracker, Inline=FastReturn]
|
| void didEnqueueEvent([Keep] EventTarget*, Event*);
|
| @@ -179,11 +179,8 @@ interface InspectorInstrumentation {
|
| [AsyncCallTracker, Inline=FastReturn]
|
| void didPerformExecutionContextTask(ExecutionContext*);
|
|
|
| - [Debugger, DOMDebugger, Inline=FastReturn]
|
| - InspectorInstrumentationCookie willEvaluateScript(LocalFrame*);
|
| -
|
| - [Debugger, Inline=FastReturn]
|
| - void didEvaluateScript(const InspectorInstrumentationCookie&);
|
| + [DOMDebugger, Inline=FastReturn]
|
| + void willEvaluateScript(ExecutionContext*);
|
|
|
| [PageRuntime]
|
| void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin*, int worldId);
|
|
|