Index: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h |
index a85db2306d15189bfbc623c8681daa464f8890d1..8565478c22fed57d71b27304fbcf31da9bc1d52d 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h |
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h |
@@ -32,7 +32,7 @@ |
#include "core/CoreExport.h" |
#include "core/inspector/InspectorBaseAgent.h" |
-#include "core/inspector/V8DebuggerAgent.h" |
+#include "core/inspector/v8/V8DebuggerAgent.h" |
namespace blink { |
@@ -86,6 +86,8 @@ public: |
// V8DebuggerAgent::Client implementation. |
void debuggerAgentEnabled() override; |
void debuggerAgentDisabled() override; |
+ void asyncCallTrackingStateChanged(bool tracking) override; |
+ void resetAsyncOperations() override; |
// Called by InspectorInstrumentation. |
bool isPaused(); |
@@ -106,6 +108,7 @@ protected: |
InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroupId); |
OwnPtrWillBeMember<V8DebuggerAgent> m_v8DebuggerAgent; |
+ OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; |
}; |
} // namespace blink |