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

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

Issue 427673004: Oilpan: Move AnimationNode::EventDelegate to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/animation/AnimationNode.h ('k') | Source/core/animation/AnimationNodeTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationNode.cpp
diff --git a/Source/core/animation/AnimationNode.cpp b/Source/core/animation/AnimationNode.cpp
index d6768ff6bc1a973ef60bafb42909fc5820462c61..c85f8cfb8faaadcfbab31a0d68b4bcef9b9baea2 100644
--- a/Source/core/animation/AnimationNode.cpp
+++ b/Source/core/animation/AnimationNode.cpp
@@ -50,7 +50,7 @@ Timing::FillMode resolvedFillMode(Timing::FillMode fillMode, bool isAnimation)
} // namespace
-AnimationNode::AnimationNode(const Timing& timing, PassOwnPtr<EventDelegate> eventDelegate)
+AnimationNode::AnimationNode(const Timing& timing, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
: m_parent(nullptr)
, m_startTime(0)
, m_player(nullptr)
@@ -191,6 +191,7 @@ void AnimationNode::trace(Visitor* visitor)
{
visitor->trace(m_parent);
visitor->trace(m_player);
+ visitor->trace(m_eventDelegate);
}
} // namespace blink
« no previous file with comments | « Source/core/animation/AnimationNode.h ('k') | Source/core/animation/AnimationNodeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698