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

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

Issue 74063002: DevTools: Support asynchronous call stacks on backend. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Async call stacks are off by default, added Debugger.enableAsyncCallStacks protocol command Created 7 years, 1 month 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 d7fa7aee3223457723bdb6cf47285086eb82768d..08057d60832ae6c91bd966a48087bdb4d68fcc48 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -145,10 +145,10 @@ interface InspectorInstrumentation {
[Timeline, Inline=FastReturn]
void didScheduleResourceRequest([Keep] Document*, const String& url);
- [DOMDebugger, Timeline, Inline=FastReturn]
+ [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, bool singleShot);
- [DOMDebugger, Timeline, Inline=FastReturn]
+ [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
void didRemoveTimer([Keep] ExecutionContext*, int timerId);
[Timeline, Inline=FastReturn]
@@ -193,7 +193,7 @@ interface InspectorInstrumentation {
[PageRuntime, Inline=FastReturn]
void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*);
- [DOMDebugger, Timeline, Inline=FastReturn]
+ [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int timerId);
[Debugger, Timeline, Inline=FastReturn]
@@ -378,16 +378,16 @@ interface InspectorInstrumentation {
[Timeline, Inline=FastReturn]
void didWriteHTML(const InspectorInstrumentationCookie&, unsigned endLine);
- [DOMDebugger, Timeline]
+ [DOMDebugger, Debugger, Timeline]
void didRequestAnimationFrame([Keep] Document*, int callbackId);
- [DOMDebugger, Timeline]
+ [DOMDebugger, Debugger, Timeline]
void didCancelAnimationFrame([Keep] Document*, int callbackId);
- [DOMDebugger, Timeline]
+ [DOMDebugger, Debugger, Timeline]
InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
- [Timeline, Inline=FastReturn]
+ [Timeline, Debugger, Inline=FastReturn]
void didFireAnimationFrame(const InspectorInstrumentationCookie&);
[DOMStorage, Inline=FastReturn]

Powered by Google App Engine
This is Rietveld 408576698