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

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

Issue 829503002: Oilpan: fix build after r187699. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing WorkerInspectorController tracing 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
Index: Source/core/inspector/AsyncCallStackTracker.h
diff --git a/Source/core/inspector/AsyncCallStackTracker.h b/Source/core/inspector/AsyncCallStackTracker.h
index 75c9ec6a2cdebbd5ded7aba92084d779a7d19721..d5a0226fa616a3ca6e4379f427a83d981e8668ff 100644
--- a/Source/core/inspector/AsyncCallStackTracker.h
+++ b/Source/core/inspector/AsyncCallStackTracker.h
@@ -53,11 +53,12 @@ class MutationObserver;
class ThreadableLoaderClient;
class XMLHttpRequest;
-class AsyncCallStackTracker final : public NoBaseWillBeGarbageCollected<AsyncCallStackTracker>, public InspectorDebuggerAgent::AsyncCallTrackingListener {
+class AsyncCallStackTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallStackTracker>, public InspectorDebuggerAgent::AsyncCallTrackingListener {
WTF_MAKE_NONCOPYABLE(AsyncCallStackTracker);
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(AsyncCallStackTracker);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AsyncCallStackTracker);
public:
AsyncCallStackTracker(InspectorDebuggerAgent*, InstrumentingAgents*);
+ virtual ~AsyncCallStackTracker();
// 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/AsyncCallStackTracker.cpp » ('j') | Source/core/inspector/V8AsyncCallTracker.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698