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

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

Issue 858173002: DevTools: rename AsyncCallChainMap to AsyncOperationMap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/core/inspector/AsyncCallChainMap.h ('k') | Source/core/inspector/AsyncCallTracker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « Source/core/inspector/AsyncCallChainMap.h ('k') | Source/core/inspector/AsyncCallTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698