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

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

Issue 1307363006: DevTools: move instrumentation of v8 calls into V8ScriptRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressed comments Created 5 years, 4 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
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/PageDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/PageDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698