| Index: Source/core/animation/InvalidatableStyleInterpolation.h
|
| diff --git a/Source/core/animation/InvalidatableStyleInterpolation.h b/Source/core/animation/InvalidatableStyleInterpolation.h
|
| index d1d4ab60d421114d318cbc62efb82bd92564afc8..5cbafa5aedead173947b20c7f8beaa0cc0091b1e 100644
|
| --- a/Source/core/animation/InvalidatableStyleInterpolation.h
|
| +++ b/Source/core/animation/InvalidatableStyleInterpolation.h
|
| @@ -32,11 +32,7 @@ public:
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| - visitor->trace(m_startKeyframe);
|
| - visitor->trace(m_endKeyframe);
|
| - visitor->trace(m_cachedConversion);
|
| visitor->trace(m_conversionCheckers);
|
| - visitor->trace(m_cachedValue);
|
| StyleInterpolation::trace(visitor);
|
| }
|
|
|
| @@ -46,22 +42,22 @@ private:
|
| const CSSPropertySpecificKeyframe& startKeyframe,
|
| const CSSPropertySpecificKeyframe& endKeyframe);
|
|
|
| - PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const;
|
| + PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const;
|
| void ensureValidInterpolation(const StyleResolverState&, const InterpolationValue* underlyingValue) const;
|
| bool dependsOnUnderlyingValue() const;
|
| bool isCacheValid(const StyleResolverState&, const InterpolationValue* underlyingValue) const;
|
| bool isNeutralKeyframeActive() const;
|
| bool maybeCachePairwiseConversion(const StyleResolverState*, const InterpolationValue* underlyingValue) const;
|
| - PassOwnPtrWillBeRawPtr<InterpolationValue> convertSingleKeyframe(const CSSPropertySpecificKeyframe&, const StyleResolverState&, const InterpolationValue* underlyingValue) const;
|
| + PassOwnPtr<InterpolationValue> convertSingleKeyframe(const CSSPropertySpecificKeyframe&, const StyleResolverState&, const InterpolationValue* underlyingValue) const;
|
| void setFlagIfInheritUsed(StyleResolverState&) const;
|
|
|
| const Vector<const InterpolationType*>& m_interpolationTypes;
|
| - RawPtrWillBeMember<const CSSPropertySpecificKeyframe> m_startKeyframe;
|
| - RawPtrWillBeMember<const CSSPropertySpecificKeyframe> m_endKeyframe;
|
| + const CSSPropertySpecificKeyframe* m_startKeyframe;
|
| + const CSSPropertySpecificKeyframe* m_endKeyframe;
|
| double m_currentFraction;
|
| - mutable OwnPtrWillBeMember<PrimitiveInterpolation> m_cachedConversion;
|
| + mutable OwnPtr<PrimitiveInterpolation> m_cachedConversion;
|
| mutable InterpolationType::ConversionCheckers m_conversionCheckers;
|
| - mutable OwnPtrWillBeMember<InterpolationValue> m_cachedValue;
|
| + mutable OwnPtr<InterpolationValue> m_cachedValue;
|
| };
|
|
|
| DEFINE_TYPE_CASTS(InvalidatableStyleInterpolation, Interpolation, value, value->isInvalidatableStyleInterpolation(), value.isInvalidatableStyleInterpolation());
|
|
|