Index: Source/core/animation/PrimitiveInterpolation.h |
diff --git a/Source/core/animation/PrimitiveInterpolation.h b/Source/core/animation/PrimitiveInterpolation.h |
index b17e1af86fc70571048a22e0b89fcea72f3ce251..3f4d86f125ae6abde9d67b9ef18b74208594688f 100644 |
--- a/Source/core/animation/PrimitiveInterpolation.h |
+++ b/Source/core/animation/PrimitiveInterpolation.h |
@@ -61,9 +61,9 @@ private: |
, m_end(end) |
, m_nonInterpolableValue(nonInterpolableValue) |
{ } |
- OwnPtrWillBeRawPtr<InterpolableValue> m_start; |
- OwnPtrWillBeRawPtr<InterpolableValue> m_end; |
- RefPtrWillBeRawPtr<NonInterpolableValue> m_nonInterpolableValue; |
+ OwnPtrWillBeMember<InterpolableValue> m_start; |
+ OwnPtrWillBeMember<InterpolableValue> m_end; |
+ RefPtrWillBeMember<NonInterpolableValue> m_nonInterpolableValue; |
}; |
// Represents a pair of incompatible keyframes that fall back to 50% flip behaviour eg. "auto" and "0px". |