Index: Source/core/inspector/AsyncCallTracker.h |
diff --git a/Source/core/inspector/AsyncCallTracker.h b/Source/core/inspector/AsyncCallTracker.h |
index ce3a5438e2f8137233ca591b45162649f157727c..fe40dcda849df63ea1070f1c6a0033d53b7f06ab 100644 |
--- a/Source/core/inspector/AsyncCallTracker.h |
+++ b/Source/core/inspector/AsyncCallTracker.h |
@@ -39,7 +39,6 @@ |
namespace blink { |
-class AsyncCallChain; |
class Event; |
class EventListener; |
class EventTarget; |
@@ -62,7 +61,7 @@ public: |
// InspectorDebuggerAgent::AsyncCallTrackingListener implementation: |
void asyncCallTrackingStateChanged(bool tracking) override; |
- void resetAsyncCallChains() override; |
+ void resetAsyncOperations() override; |
void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singleShot); |
void didRemoveTimer(ExecutionContext*, int timerId); |
@@ -105,7 +104,8 @@ public: |
private: |
void willHandleXHREvent(XMLHttpRequest*, Event*); |
- void setCurrentAsyncCallChain(ExecutionContext*, int operationId); |
+ bool isKnownAsyncOperationId(ExecutionContext*, int operationId) const; |
+ void willFireAsyncCall(int operationId); |
void didFireAsyncCall(); |
ExecutionContextData* createContextDataIfNeeded(ExecutionContext*); |