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

Unified Diff: Source/core/animation/ActiveAnimations.cpp

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix heaptests Created 6 years, 5 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: Source/core/animation/ActiveAnimations.cpp
diff --git a/Source/core/animation/ActiveAnimations.cpp b/Source/core/animation/ActiveAnimations.cpp
index 6013ea5d91ec86bd82837b2615d8982e68fd8f24..8dfddbcf86bde5c36c6f0262118290470d8c4785 100644
--- a/Source/core/animation/ActiveAnimations.cpp
+++ b/Source/core/animation/ActiveAnimations.cpp
@@ -93,9 +93,11 @@ void ActiveAnimations::cancelAnimationOnCompositor()
void ActiveAnimations::trace(Visitor* visitor)
{
+#if ENABLE(OILPAN)
visitor->trace(m_cssAnimations);
visitor->trace(m_defaultStack);
visitor->trace(m_players);
+#endif
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698