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

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

Issue 293893003: Web Animations: Rename TimedItem to AnimationSource (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectations. 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/InertAnimation.h ('k') | Source/core/animation/Keyframe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InertAnimation.cpp
diff --git a/Source/core/animation/InertAnimation.cpp b/Source/core/animation/InertAnimation.cpp
index 8af423d7abcc29b49fbe9153e66ec8ff025ae48a..6636b47e7558e3d604c584c78b9cc9b11710ff9f 100644
--- a/Source/core/animation/InertAnimation.cpp
+++ b/Source/core/animation/InertAnimation.cpp
@@ -40,7 +40,7 @@ PassRefPtrWillBeRawPtr<InertAnimation> InertAnimation::create(PassRefPtrWillBeRa
}
InertAnimation::InertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, bool paused)
- : TimedItem(timing)
+ : AnimationSource(timing)
, m_effect(effect)
, m_paused(paused)
{
@@ -66,7 +66,7 @@ double InertAnimation::calculateTimeToEffectChange(bool, double, double) const
void InertAnimation::trace(Visitor* visitor)
{
visitor->trace(m_effect);
- TimedItem::trace(visitor);
+ AnimationSource::trace(visitor);
}
} // namespace WebCore
« no previous file with comments | « Source/core/animation/InertAnimation.h ('k') | Source/core/animation/Keyframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698