| Index: cc/CCKeyframedAnimationCurve.h
|
| diff --git a/cc/CCKeyframedAnimationCurve.h b/cc/CCKeyframedAnimationCurve.h
|
| index 6f1f92da08cb345ecb53600333e26edb51890d7f..232f07cc2008661924e0fae30395861504c2acce 100644
|
| --- a/cc/CCKeyframedAnimationCurve.h
|
| +++ b/cc/CCKeyframedAnimationCurve.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "CCAnimationCurve.h"
|
| #include "CCTimingFunction.h"
|
| +#include "cc/own_ptr_vector.h"
|
| #include <public/WebTransformOperations.h>
|
| #include <wtf/OwnPtr.h>
|
| #include <wtf/PassOwnPtr.h>
|
| @@ -79,7 +80,7 @@ private:
|
|
|
| // Always sorted in order of increasing time. No two keyframes have the
|
| // same time.
|
| - Vector<OwnPtr<CCFloatKeyframe> > m_keyframes;
|
| + OwnPtrVector<CCFloatKeyframe> m_keyframes;
|
| };
|
|
|
| class CCKeyframedTransformAnimationCurve : public CCTransformAnimationCurve {
|
| @@ -103,7 +104,7 @@ private:
|
|
|
| // Always sorted in order of increasing time. No two keyframes have the
|
| // same time.
|
| - Vector<OwnPtr<CCTransformKeyframe> > m_keyframes;
|
| + OwnPtrVector<CCTransformKeyframe> m_keyframes;
|
| };
|
|
|
| } // namespace cc
|
|
|