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

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

Issue 404953003: DevTools: Async call stacks for window.postMessage() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 5 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') | no next file » | 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 6ac0158a69d76510a3d752f95c9a756c198fda97..288d5dadaf3de8d8bf94fc2d0ceb9f5b487bd66f 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -454,6 +454,21 @@ interface InspectorInstrumentation {
[DOMDebugger, Inline=FastReturn]
void willExecuteCustomElementCallback([Keep] Element*);
+
+ [Debugger, Inline=FastReturn]
+ int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& operationName);
+
+ [Debugger, Inline=FastReturn]
+ void traceAsyncOperationCompleted([Keep] ExecutionContext*, int operationId);
+
+ [Debugger, Inline=FastReturn]
+ InspectorInstrumentationCookie traceAsyncOperationCompletedCallbackStarting([Keep] ExecutionContext*, int operationId);
+
+ [Debugger, Inline=FastReturn]
+ InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionContext*, int operationId);
+
+ [Debugger, Inline=FastReturn]
+ void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&);
}
interface InspectorConsoleInstrumentation {
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698