Index: Source/core/platform/animation/StyleAnimationDataList.cpp |
diff --git a/Source/core/platform/animation/CSSAnimationDataList.cpp b/Source/core/platform/animation/StyleAnimationDataList.cpp |
similarity index 85% |
rename from Source/core/platform/animation/CSSAnimationDataList.cpp |
rename to Source/core/platform/animation/StyleAnimationDataList.cpp |
index 5170e7680f969d3fc85dbaf98d992f1e07fe40e3..a8462fb1d6fa2ebc0e6a12373a808b31b95cf0f3 100644 |
--- a/Source/core/platform/animation/CSSAnimationDataList.cpp |
+++ b/Source/core/platform/animation/StyleAnimationDataList.cpp |
@@ -20,7 +20,7 @@ |
*/ |
#include "config.h" |
-#include "core/platform/animation/CSSAnimationDataList.h" |
+#include "core/platform/animation/StyleAnimationDataList.h" |
namespace WebCore { |
@@ -31,13 +31,13 @@ if (i < size() && i != 0) { \ |
animation(i)->propSet(animation(j)->propGet()); \ |
} |
-CSSAnimationDataList::CSSAnimationDataList(const CSSAnimationDataList& o) |
+StyleAnimationDataList::StyleAnimationDataList(const StyleAnimationDataList& o) |
{ |
for (size_t i = 0; i < o.size(); ++i) |
- m_animations.append(CSSAnimationData::create(o.animation(i))); |
+ m_animations.append(StyleAnimationData::create(o.animation(i))); |
} |
-void CSSAnimationDataList::fillUnsetProperties() |
+void StyleAnimationDataList::fillUnsetProperties() |
{ |
size_t i; |
FILL_UNSET_PROPERTY(isDelaySet, delay, setDelay); |
@@ -51,7 +51,7 @@ void CSSAnimationDataList::fillUnsetProperties() |
FILL_UNSET_PROPERTY(isPropertySet, property, setProperty); |
} |
-bool CSSAnimationDataList::operator==(const CSSAnimationDataList& o) const |
+bool StyleAnimationDataList::operator==(const StyleAnimationDataList& o) const |
{ |
if (size() != o.size()) |
return false; |