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

Unified Diff: Source/core/platform/graphics/GraphicsLayerAnimation.h

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/graphics/GraphicsLayerAnimation.h
diff --git a/Source/core/platform/graphics/GraphicsLayerAnimation.h b/Source/core/platform/graphics/GraphicsLayerAnimation.h
index fa9bae8debf94f82dece44a74cdb3d5b83fb5bdd..3717c4746cf8da2e4a98e7efb23fbc837160aef7 100644
--- a/Source/core/platform/graphics/GraphicsLayerAnimation.h
+++ b/Source/core/platform/graphics/GraphicsLayerAnimation.h
@@ -40,7 +40,7 @@ public:
GraphicsLayerAnimation()
: m_keyframes(AnimatedPropertyInvalid)
{ }
- GraphicsLayerAnimation(const String&, const KeyframeValueList&, const IntSize&, const CSSAnimationData*, double, bool);
+ GraphicsLayerAnimation(const String&, const KeyframeValueList&, const IntSize&, const StyleAnimationData*, double, bool);
void apply(Client*);
void pause(double);
void resume();
@@ -57,7 +57,7 @@ public:
IntSize boxSize() const { return m_boxSize; }
double startTime() const { return m_startTime; }
double pauseTime() const { return m_pauseTime; }
- PassRefPtr<CSSAnimationData> animation() const { return m_animation.get(); }
+ PassRefPtr<StyleAnimationData> animation() const { return m_animation.get(); }
const KeyframeValueList& keyframes() const { return m_keyframes; }
bool listsMatch() const { return m_listsMatch; }
@@ -65,7 +65,7 @@ private:
void applyInternal(Client*, const AnimationValue* from, const AnimationValue* to, float progress);
KeyframeValueList m_keyframes;
IntSize m_boxSize;
- RefPtr<CSSAnimationData> m_animation;
+ RefPtr<StyleAnimationData> m_animation;
String m_name;
bool m_listsMatch;
double m_startTime;
« no previous file with comments | « Source/core/platform/graphics/GraphicsLayer.h ('k') | Source/core/platform/graphics/GraphicsLayerAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698