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

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: fixed test flakiness Created 7 years 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/devtools/protocol.json » ('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 27c694bd4c426911eae5d535ed4f346d416d264e..919af4bd3763422fa414cc442b1b972224964c64 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -148,10 +148,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]
@@ -196,7 +196,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]
@@ -381,16 +381,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]
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698