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

Unified Diff: Source/core/platform/animation/AnimationList.cpp

Issue 14391005: Rename Animation -> PrimitiveAnimation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 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/platform/animation/AnimationList.cpp
diff --git a/Source/core/platform/animation/AnimationList.cpp b/Source/core/platform/animation/AnimationList.cpp
index 58a40aae42fcf88411eca84ff89e67b7915aacf1..b3992486b0bcf04256ed92da6b8d815f37c5f6f4 100644
--- a/Source/core/platform/animation/AnimationList.cpp
+++ b/Source/core/platform/animation/AnimationList.cpp
@@ -34,7 +34,7 @@ if (i < size() && i != 0) { \
AnimationList::AnimationList(const AnimationList& o)
{
for (size_t i = 0; i < o.size(); ++i)
- m_animations.append(Animation::create(o.animation(i)));
+ m_animations.append(PrimitiveAnimation::create(o.animation(i)));
}
void AnimationList::fillUnsetProperties()

Powered by Google App Engine
This is Rietveld 408576698