| 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;
|
|
|