Index: Source/core/inspector/InspectorDebuggerAgent.h |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h |
index 56477d23ef2e7f231958478f785ad2727f0cc230..70e5c25d3d9d38e3d8fe182d8ece0d63fd0414e0 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.h |
+++ b/Source/core/inspector/InspectorDebuggerAgent.h |
@@ -37,6 +37,7 @@ |
#include "core/inspector/ConsoleAPITypes.h" |
#include "core/inspector/InjectedScript.h" |
#include "core/inspector/InspectorBaseAgent.h" |
+#include "core/inspector/PromiseTracker.h" |
#include "core/inspector/ScriptBreakpoint.h" |
#include "core/inspector/ScriptDebugListener.h" |
#include "wtf/Forward.h" |
@@ -225,6 +226,7 @@ private: |
virtual void didParseSource(const String& scriptId, const Script&, CompileResult) OVERRIDE FINAL; |
virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType, const String& eventName, int id) OVERRIDE FINAL; |
+ virtual void didReceiveV8PromiseEvent(ScriptState*, const ScopedPersistent<v8::Object>& promise, const ScopedPersistent<v8::Object>& parentPromise, int status) OVERRIDE FINAL; |
aandrey
2014/08/04 16:58:47
v8::* not allowed here
Alexandra Mikhaylova
2014/08/06 13:28:39
We'll keep it here for now as there's no quick alt
|
void setPauseOnExceptionsImpl(ErrorString*, int); |
@@ -263,6 +265,7 @@ private: |
bool m_skipAllPauses; |
OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
AsyncCallStackTracker m_asyncCallStackTracker; |
+ PromiseTracker m_promiseTracker; |
}; |
} // namespace blink |