Index: cc/animation/animation_curve.h |
diff --git a/cc/animation/animation_curve.h b/cc/animation/animation_curve.h |
index 68bad3ba3b55d5b21699c38d7d9cc14eb70f53c4..a54480c5e8ca77c6954ad06abe1037f62e62d439 100644 |
--- a/cc/animation/animation_curve.h |
+++ b/cc/animation/animation_curve.h |
@@ -5,7 +5,8 @@ |
#ifndef CC_ANIMATION_ANIMATION_CURVE_H_ |
#define CC_ANIMATION_ANIMATION_CURVE_H_ |
-#include "base/memory/scoped_ptr.h" |
+#include <memory> |
+ |
#include "base/time/time.h" |
#include "cc/base/cc_export.h" |
#include "cc/output/filter_operations.h" |
@@ -33,7 +34,7 @@ class CC_EXPORT AnimationCurve { |
virtual base::TimeDelta Duration() const = 0; |
virtual CurveType Type() const = 0; |
- virtual scoped_ptr<AnimationCurve> Clone() const = 0; |
+ virtual std::unique_ptr<AnimationCurve> Clone() const = 0; |
const ColorAnimationCurve* ToColorAnimationCurve() const; |
const FloatAnimationCurve* ToFloatAnimationCurve() const; |