| Index: ui/compositor/float_animation_curve_adapter.h
|
| diff --git a/ui/compositor/float_animation_curve_adapter.h b/ui/compositor/float_animation_curve_adapter.h
|
| index 7657c8a5d08bb0833ba19aac97b05a5e2d7e8b6f..b63370617486842fc5d2eae404be2a0a1c911d0d 100644
|
| --- a/ui/compositor/float_animation_curve_adapter.h
|
| +++ b/ui/compositor/float_animation_curve_adapter.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef UI_COMPOSITOR_FLOAT_ANIMATION_CURVE_ADAPTER_H_
|
| #define UI_COMPOSITOR_FLOAT_ANIMATION_CURVE_ADAPTER_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/time/time.h"
|
| #include "cc/animation/animation_curve.h"
|
| #include "ui/gfx/animation/tween.h"
|
| @@ -23,7 +24,7 @@ class FloatAnimationCurveAdapter : public cc::FloatAnimationCurve {
|
|
|
| // FloatAnimationCurve implementation.
|
| base::TimeDelta Duration() const override;
|
| - scoped_ptr<cc::AnimationCurve> Clone() const override;
|
| + std::unique_ptr<cc::AnimationCurve> Clone() const override;
|
| float GetValue(base::TimeDelta t) const override;
|
|
|
| private:
|
|
|