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

Unified Diff: src/inspector/v8-debugger.h

Issue 2357423002: Improve stack traces for async functions (Closed)
Patch Set: Rebase Created 4 years, 3 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 | « src/heap-symbols.h ('k') | src/inspector/v8-debugger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/v8-debugger.h
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h
index 8f02aa0aea2d065bcbc49a8eda03b60a0121ce68..123884bcbcc76d8e3cc51260d97e770c7fc29386 100644
--- a/src/inspector/v8-debugger.h
+++ b/src/inspector/v8-debugger.h
@@ -90,8 +90,9 @@ class V8Debugger {
v8::Local<v8::Value>);
void asyncTaskScheduled(const StringView& taskName, void* task,
- bool recurring);
- void asyncTaskScheduled(const String16& taskName, void* task, bool recurring);
+ bool recurring, int skipInitialFrames = 0);
kozy 2016/09/23 01:27:36 Please not expose this argument in public API. You
Dan Ehrenberg 2016/09/23 04:11:31 As we discussed off-line, there's nothing special
+ void asyncTaskScheduled(const String16& taskName, void* task, bool recurring,
+ int skipInitialFrames = 0);
void asyncTaskCanceled(void* task);
void asyncTaskStarted(void* task);
void asyncTaskFinished(void* task);
« no previous file with comments | « src/heap-symbols.h ('k') | src/inspector/v8-debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698