| Index: Source/core/animation/InterpolationValue.h
|
| diff --git a/Source/core/animation/InterpolationValue.h b/Source/core/animation/InterpolationValue.h
|
| index e37191f026a9801eb6cc720219626836aca2e127..e5ddda1167370470b34fa4550c7dabc9aa086610 100644
|
| --- a/Source/core/animation/InterpolationValue.h
|
| +++ b/Source/core/animation/InterpolationValue.h
|
| @@ -16,13 +16,13 @@ class InterpolationType;
|
| struct InterpolationComponentValue {
|
| ALLOW_ONLY_INLINE_ALLOCATION();
|
|
|
| - InterpolationComponentValue(PassOwnPtr<InterpolableValue> interpolableValue = nullptr, PassRefPtr<NonInterpolableValue> nonInterpolableValue = nullptr)
|
| + InterpolationComponentValue(PassOwnPtr<InterpolableValue> interpolableValue = nullptr, PassRefPtrWillBeRawPtr<NonInterpolableValue> nonInterpolableValue = nullptr)
|
| : interpolableValue(interpolableValue)
|
| , nonInterpolableValue(nonInterpolableValue)
|
| { }
|
|
|
| OwnPtr<InterpolableValue> interpolableValue;
|
| - RefPtr<NonInterpolableValue> nonInterpolableValue;
|
| + RefPtrWillBePersistent<NonInterpolableValue> nonInterpolableValue;
|
| };
|
|
|
| class InterpolationValue {
|
|
|