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

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

Issue 21156005: Web Animations: Add an event delegate to allow different forms of event dispatch (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « no previous file | Source/core/animation/TimedItem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Animation.cpp
diff --git a/Source/core/animation/Animation.cpp b/Source/core/animation/Animation.cpp
index 3c833ddea7c779f0a17df99919ba0fee27ce3a21..957ee730b0874481b2c719bf7412d168e7891274 100644
--- a/Source/core/animation/Animation.cpp
+++ b/Source/core/animation/Animation.cpp
@@ -43,7 +43,7 @@ PassRefPtr<Animation> Animation::create(PassRefPtr<Element> target, PassRefPtr<A
}
Animation::Animation(PassRefPtr<Element> target, PassRefPtr<AnimationEffect> effect, const Timing& timing)
- : TimedItem(timing)
+ : TimedItem(timing, nullptr)
pdr. 2013/08/01 21:11:16 Would it be useful to change the TimedItem to use
dstockwell 2013/08/02 00:23:26 Done.
, m_target(target)
, m_effect(effect)
, m_activeInAnimationStack(false)
« no previous file with comments | « no previous file | Source/core/animation/TimedItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698