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

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: Merged willCall and willEvaluate on V8DebuggerAgent 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
Index: Source/core/inspector/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index ba362489f3f39754c50158dbd975050bab993d02..8500371d23c8750e1d90e158b5a66937832ee7c0 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -138,7 +138,7 @@ interface InspectorInstrumentation {
void didRemoveTimer([Keep] ExecutionContext*, int timerId);
[Debugger, Inline=FastReturn]
- InspectorInstrumentationCookie willCallFunction(ExecutionContext*, const DevToolsFunctionInfo&);
+ InspectorInstrumentationCookie willCallFunction(ExecutionContext*, int scriptId);
[Debugger, Inline=FastReturn]
void didCallFunction(const InspectorInstrumentationCookie&);
@@ -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);

Powered by Google App Engine
This is Rietveld 408576698