| Index: Source/core/inspector/InspectorDebuggerAgent.h
|
| diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
|
| index 9373430b7047c4e8fa85a19ce7bc376dc6a02f57..dbc3aa26cc5d5c66758c4da4058267bc4c8f9fd8 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 isFulfilled);
|
| + void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*);
|
| + void didPerformPromiseTask();
|
| bool canBreakProgram();
|
| void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data);
|
| void scriptExecutionBlockedByCSP(const String& directiveText);
|
|
|