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

Unified Diff: Source/core/inspector/V8AsyncCallTracker.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/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/V8AsyncCallTracker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/V8AsyncCallTracker.h
diff --git a/Source/core/inspector/V8AsyncCallTracker.h b/Source/core/inspector/V8AsyncCallTracker.h
index a654164377a9c312dae279e50d77233b331b32ac..02e43ec9b4ca6deb82e3be906d53680f1b4d5070 100644
--- a/Source/core/inspector/V8AsyncCallTracker.h
+++ b/Source/core/inspector/V8AsyncCallTracker.h
@@ -31,7 +31,7 @@ public:
// InspectorDebuggerAgent::AsyncCallTrackingListener implementation:
void asyncCallTrackingStateChanged(bool tracking) override;
- void resetAsyncCallChains() override;
+ void resetAsyncOperations() override;
void didReceiveV8AsyncTaskEvent(ScriptState*, const String& eventType, const String& eventName, int id);
@@ -44,9 +44,8 @@ private:
void didEnqueueV8AsyncTask(ScriptState*, const String& eventName, int id);
void willHandleV8AsyncTask(ScriptState*, const String& eventName, int id);
- class V8ContextAsyncCallChains;
- using V8ContextAsyncChainMap = WillBeHeapHashMap<ScriptState*, OwnPtrWillBeMember<V8ContextAsyncCallChains> >;
- V8ContextAsyncChainMap m_contextAsyncCallChainMap;
+ class V8ContextAsyncOperations;
+ WillBeHeapHashMap<ScriptState*, OwnPtrWillBeMember<V8ContextAsyncOperations> > m_contextAsyncOperationMap;
RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
};
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/V8AsyncCallTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698