| Index: cc/test/CCAnimationTestCommon.h
|
| diff --git a/cc/test/CCAnimationTestCommon.h b/cc/test/CCAnimationTestCommon.h
|
| index 6ebf199e97feb69def061304b04fee60152ccf93..a768930afe2b600a3e1458af37bb3a233944198a 100644
|
| --- a/cc/test/CCAnimationTestCommon.h
|
| +++ b/cc/test/CCAnimationTestCommon.h
|
| @@ -10,8 +10,6 @@
|
| #include "CCLayerAnimationController.h"
|
| #include "IntSize.h"
|
|
|
| -#include <wtf/OwnPtr.h>
|
| -
|
| namespace cc {
|
| class CCLayerImpl;
|
| class LayerChromium;
|
| @@ -27,7 +25,7 @@ public:
|
|
|
| virtual double duration() const OVERRIDE;
|
| virtual float getValue(double now) const OVERRIDE;
|
| - virtual PassOwnPtr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
| + virtual scoped_ptr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
| @@ -41,7 +39,7 @@ public:
|
| virtual double duration() const OVERRIDE;
|
| virtual WebKit::WebTransformationMatrix getValue(double time) const OVERRIDE;
|
|
|
| - virtual PassOwnPtr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
| + virtual scoped_ptr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
| @@ -55,7 +53,7 @@ public:
|
| virtual double duration() const OVERRIDE;
|
| virtual float getValue(double time) const OVERRIDE;
|
|
|
| - virtual PassOwnPtr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
| + virtual scoped_ptr<cc::CCAnimationCurve> clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
|
|