| Index: Source/core/animation/CSSValueInterpolationType.cpp
|
| diff --git a/Source/core/animation/CSSValueInterpolationType.cpp b/Source/core/animation/CSSValueInterpolationType.cpp
|
| index 7b91a827e17e77174a16d04bc0cdbdd6820db002..9bed5c7901236697e009e16ef7f87304a7af4501 100644
|
| --- a/Source/core/animation/CSSValueInterpolationType.cpp
|
| +++ b/Source/core/animation/CSSValueInterpolationType.cpp
|
| @@ -12,7 +12,7 @@ namespace blink {
|
| class CSSValueNonInterpolableValue : public NonInterpolableValue {
|
| public:
|
| ~CSSValueNonInterpolableValue() override { }
|
| - static PassRefPtrWillBeRawPtr<CSSValueNonInterpolableValue> create(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
|
| + static PassRefPtrWillBeRawPtr<CSSValueNonInterpolableValue> create(PassRefPtr<CSSValue> cssValue)
|
| {
|
| return adoptRefWillBeNoop(new CSSValueNonInterpolableValue(cssValue));
|
| }
|
| @@ -22,23 +22,22 @@ public:
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| NonInterpolableValue::trace(visitor);
|
| - visitor->trace(m_cssValue);
|
| }
|
|
|
| DECLARE_NON_INTERPOLABLE_VALUE_TYPE();
|
|
|
| private:
|
| - CSSValueNonInterpolableValue(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
|
| + CSSValueNonInterpolableValue(PassRefPtr<CSSValue> cssValue)
|
| : m_cssValue(cssValue)
|
| { }
|
|
|
| - RefPtrWillBeMember<CSSValue> m_cssValue;
|
| + RefPtr<CSSValue> m_cssValue;
|
| };
|
|
|
| DEFINE_NON_INTERPOLABLE_VALUE_TYPE(CSSValueNonInterpolableValue);
|
| DEFINE_NON_INTERPOLABLE_VALUE_TYPE_CASTS(CSSValueNonInterpolableValue);
|
|
|
| -PassOwnPtrWillBeRawPtr<InterpolationValue> CSSValueInterpolationType::maybeConvertSingle(const CSSPropertySpecificKeyframe& keyframe, const StyleResolverState*, ConversionCheckers&) const
|
| +PassOwnPtr<InterpolationValue> CSSValueInterpolationType::maybeConvertSingle(const CSSPropertySpecificKeyframe& keyframe, const StyleResolverState*, ConversionCheckers&) const
|
| {
|
| return InterpolationValue::create(*this, InterpolableList::create(0), CSSValueNonInterpolableValue::create(keyframe.value()));
|
| }
|
|
|