Index: Source/core/animation/Interpolation.h |
diff --git a/Source/core/animation/Interpolation.h b/Source/core/animation/Interpolation.h |
index feaf2ad3029d5e5e6cf308bbbd65482b8e8de0a9..3722d6d0da8c137f2e640686de5f08bbc7c575aa 100644 |
--- a/Source/core/animation/Interpolation.h |
+++ b/Source/core/animation/Interpolation.h |
@@ -30,14 +30,14 @@ public: |
DECLARE_VIRTUAL_TRACE(); |
protected: |
- const OwnPtrWillBeMember<InterpolableValue> m_start; |
- const OwnPtrWillBeMember<InterpolableValue> m_end; |
+ const OwnPtr<InterpolableValue> m_start; |
+ const OwnPtr<InterpolableValue> m_end; |
mutable double m_cachedFraction; |
mutable int m_cachedIteration; |
- mutable OwnPtrWillBeMember<InterpolableValue> m_cachedValue; |
+ mutable OwnPtr<InterpolableValue> m_cachedValue; |
- Interpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end); |
+ Interpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end); |
private: |
InterpolableValue* getCachedValueForTesting() const { return m_cachedValue.get(); } |