Index: Source/core/animation/Keyframe.h |
diff --git a/Source/core/animation/Keyframe.h b/Source/core/animation/Keyframe.h |
index 346a10d9971f9f434845aa22640fd9301c732da2..95650323d5cbf6fafba5a98147e24bfcb2cb9352 100644 |
--- a/Source/core/animation/Keyframe.h |
+++ b/Source/core/animation/Keyframe.h |
@@ -58,6 +58,8 @@ public: |
double offset() const { return m_offset; } |
TimingFunction& easing() const { return *m_easing; } |
EffectModel::CompositeOperation composite() const { return m_composite; } |
+ double underlyingFraction() const { return m_composite == EffectModel::CompositeReplace ? 0 : 1; } |
+ virtual bool isNeutral() const { ASSERT_NOT_REACHED(); return false; } |
virtual PassOwnPtrWillBeRawPtr<PropertySpecificKeyframe> cloneWithOffset(double offset) const = 0; |
// FIXME: Remove this once CompositorAnimations no longer depends on AnimatableValues |