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

Unified Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 131823003: DevTools: Implement async call stacks for Promises. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 11 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
Index: Source/core/inspector/InspectorDebuggerAgent.h
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
index ad2d7c0d0fa0e7400b38d1b8b421429b4b8ed236..d00c73165f5bac74444057f3212d06386e1028bb 100644
--- a/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDebuggerAgent.h
@@ -50,6 +50,7 @@ namespace WebCore {
class Document;
class EventListener;
class EventTarget;
+class ExecutionContextTask;
class FormData;
class HTTPHeaderMap;
class InjectedScriptManager;
@@ -156,6 +157,9 @@ public:
void didClearAllMutationRecords(ExecutionContext*, MutationObserver*);
void willDeliverMutationRecords(ExecutionContext*, MutationObserver*);
void didDeliverMutationRecords();
+ void didPostPromiseTask(ExecutionContext*, ExecutionContextTask*, bool isResolved);
+ void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*);
+ void didPerformPromiseTask();
bool canBreakProgram();
void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data);
void scriptExecutionBlockedByCSP(const String& directiveText);

Powered by Google App Engine
This is Rietveld 408576698