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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
diff --git a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
index 8115611d3dde7d25d68df536f65893e20fe6447f..58d6867cdd4b1126c98a1915fdeaff379406adcb 100644
--- a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
+++ b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
@@ -53,9 +53,8 @@ class MutationObserver;
class ThreadableLoaderClient;
class XMLHttpRequest;
-class CORE_EXPORT AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallTracker> {
+class CORE_EXPORT AsyncCallTracker final : public GarbageCollectedFinalized<AsyncCallTracker> {
WTF_MAKE_NONCOPYABLE(AsyncCallTracker);
- USING_FAST_MALLOC_WILL_BE_REMOVED(AsyncCallTracker);
public:
AsyncCallTracker(V8DebuggerAgent*, InstrumentingAgents*);
~AsyncCallTracker();
@@ -110,10 +109,10 @@ private:
ExecutionContextData* createContextDataIfNeeded(ExecutionContext*);
- using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<ExecutionContext>, OwnPtrWillBeMember<ExecutionContextData>>;
+ using ExecutionContextDataMap = HeapHashMap<Member<ExecutionContext>, Member<ExecutionContextData>>;
ExecutionContextDataMap m_executionContextDataMap;
V8DebuggerAgent* m_debuggerAgent;
- RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
+ Member<InstrumentingAgents> m_instrumentingAgents;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698