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

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, 10 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 a03218d744c296cb87b4f48b01f7311bebd6757b..3eb5d8714898b3ce7007f259cf26fa3ba48b239e 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