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

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

Issue 818673003: Oilpan: fix build after r187715. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 | « no previous file | 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 eb2e12d720a8c351b4e1acb880c18a06e0c3d168..4f0281d19555afbd969d12750d7b3094e649b245 100644
--- a/Source/core/inspector/AsyncCallTracker.h
+++ b/Source/core/inspector/AsyncCallTracker.h
@@ -53,11 +53,12 @@ class MutationObserver;
class ThreadableLoaderClient;
class XMLHttpRequest;
-class AsyncCallTracker final : public NoBaseWillBeGarbageCollected<AsyncCallTracker>, public InspectorDebuggerAgent::AsyncCallTrackingListener {
+class AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallTracker>, public InspectorDebuggerAgent::AsyncCallTrackingListener {
WTF_MAKE_NONCOPYABLE(AsyncCallTracker);
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(AsyncCallTracker);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AsyncCallTracker);
public:
AsyncCallTracker(InspectorDebuggerAgent*, InstrumentingAgents*);
+ virtual ~AsyncCallTracker();
// InspectorDebuggerAgent::AsyncCallTrackingListener implementation:
void asyncCallTrackingStateChanged(bool tracking) override;
@@ -111,7 +112,7 @@ private:
using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<ExecutionContext>, OwnPtrWillBeMember<ExecutionContextData>>;
ExecutionContextDataMap m_executionContextDataMap;
- InspectorDebuggerAgent* m_debuggerAgent;
+ RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
};
« no previous file with comments | « no previous file | Source/core/inspector/AsyncCallTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698