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

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

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 | « Source/core/inspector/AsyncCallTracker.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/AsyncCallTracker.cpp
diff --git a/Source/core/inspector/AsyncCallTracker.cpp b/Source/core/inspector/AsyncCallTracker.cpp
index be9603e128686177e6cd4f8bfa11586d07520477..7de7702f6013d96ed66a6295e3781ce0e7837410 100644
--- a/Source/core/inspector/AsyncCallTracker.cpp
+++ b/Source/core/inspector/AsyncCallTracker.cpp
@@ -149,7 +149,9 @@ AsyncCallTracker::AsyncCallTracker(InspectorDebuggerAgent* debuggerAgent, Instru
m_debuggerAgent->addAsyncCallTrackingListener(this);
}
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(AsyncCallTracker);
+AsyncCallTracker::~AsyncCallTracker()
+{
+}
void AsyncCallTracker::asyncCallTrackingStateChanged(bool tracking)
{
@@ -438,10 +440,12 @@ AsyncCallTracker::ExecutionContextData* AsyncCallTracker::createContextDataIfNee
void AsyncCallTracker::trace(Visitor* visitor)
{
- InspectorDebuggerAgent::AsyncCallTrackingListener::trace(visitor);
#if ENABLE(OILPAN)
visitor->trace(m_executionContextDataMap);
+ visitor->trace(m_debuggerAgent);
+ visitor->trace(m_instrumentingAgents);
#endif
+ InspectorDebuggerAgent::AsyncCallTrackingListener::trace(visitor);
}
} // namespace blink
« no previous file with comments | « Source/core/inspector/AsyncCallTracker.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698