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

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

Issue 14409013: Rename CSSAnimationData* -> StyleAnimationData* (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/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;
« no previous file with comments | « Source/core/platform/animation/StyleAnimationDataList.h ('k') | Source/core/platform/graphics/GraphicsLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698