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

Unified Diff: src/debug/interface-types.h

Issue 2578923002: [inspector] async stacks for Promise.then calls... (Closed)
Patch Set: added missing handle scope Created 4 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
Index: src/debug/interface-types.h
diff --git a/src/debug/interface-types.h b/src/debug/interface-types.h
index 05f2179231252e9d87f975d49ba34efbc1993566..cf0d2b0963d86131d171d3905391cff1ba5cc628 100644
--- a/src/debug/interface-types.h
+++ b/src/debug/interface-types.h
@@ -12,6 +12,13 @@
namespace v8 {
namespace debug {
+enum AsyncTaskEventType {
+ EnqueueRecurring = 0,
+ WillHandle = 1,
+ DidHandle = 2,
+ Cancel = 3
+};
+
/**
* Defines location inside script.
* Lines and columns are 0-based.
« src/debug/debug.cc ('K') | « src/debug/debug.cc ('k') | src/heap-symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698