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

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

Issue 284323004: Web Animations: Make AnimationPlayer an ActiveDOMObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 7 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/AnimationPlayer.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationTimeline.cpp
diff --git a/Source/core/animation/AnimationTimeline.cpp b/Source/core/animation/AnimationTimeline.cpp
index fe48d4aa7b69da28a76a46cd478e4af6e0f69b8e..d2119d24674d08f024bb2020e339f82e7a965699 100644
--- a/Source/core/animation/AnimationTimeline.cpp
+++ b/Source/core/animation/AnimationTimeline.cpp
@@ -71,7 +71,7 @@ AnimationTimeline::~AnimationTimeline()
AnimationPlayer* AnimationTimeline::createAnimationPlayer(AnimationNode* child)
{
- RefPtrWillBeRawPtr<AnimationPlayer> player = AnimationPlayer::create(*this, child);
+ RefPtrWillBeRawPtr<AnimationPlayer> player = AnimationPlayer::create(m_document->contextDocument().get(), *this, child);
AnimationPlayer* result = player.get();
m_players.add(result);
setOutdatedAnimationPlayer(result);
« no previous file with comments | « Source/core/animation/AnimationPlayer.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698