Index: Source/core/animation/CompositorAnimationsImpl.h |
diff --git a/Source/core/animation/CompositorAnimationsImpl.h b/Source/core/animation/CompositorAnimationsImpl.h |
index 4ad07bd1c140513dee6ce2e65573a85d4ece2f9b..70e677060538c27299dc8341517dd00708e32cb7 100644 |
--- a/Source/core/animation/CompositorAnimationsImpl.h |
+++ b/Source/core/animation/CompositorAnimationsImpl.h |
@@ -41,8 +41,7 @@ typedef KeyframeEffectModel::PropertySpecificKeyframeVector KeyframeVector; |
class CompositorAnimationsImpl { |
private: |
struct CompositorTiming { |
- bool reverse; |
- bool alternate; |
+ Timing::PlaybackDirection direction; |
double scaledDuration; |
double scaledTimeOffset; |
int adjustedIterationCount; |
@@ -52,7 +51,7 @@ private: |
static void getAnimationOnCompositor(const Timing&, const KeyframeEffectModel&, Vector<OwnPtr<blink::WebAnimation> >& animations); |
- static void addKeyframesToCurve(blink::WebAnimationCurve&, const KeyframeVector&, bool reverse); |
+ static void addKeyframesToCurve(blink::WebAnimationCurve&, const KeyframeVector&); |
friend class CompositorAnimations; |
friend class AnimationCompositorAnimationsTest; |