Index: cc/animation/animation_events.h |
diff --git a/cc/animation/animation_events.h b/cc/animation/animation_events.h |
index 73a705895d6ed1fa0d7934acd7d09b16bdeb9b05..f4728ba6f6b44b0a6caa32b1e06887cbb3668830 100644 |
--- a/cc/animation/animation_events.h |
+++ b/cc/animation/animation_events.h |
@@ -5,9 +5,9 @@ |
#ifndef CC_ANIMATION_ANIMATION_EVENTS_H_ |
#define CC_ANIMATION_ANIMATION_EVENTS_H_ |
+#include <memory> |
#include <vector> |
-#include "base/memory/scoped_ptr.h" |
#include "cc/animation/animation.h" |
#include "cc/animation/animation_curve.h" |
#include "cc/base/cc_export.h" |
@@ -42,7 +42,7 @@ struct CC_EXPORT AnimationEvent { |
// For continuing a scroll offset animation on the main thread. |
double animation_start_time; |
- scoped_ptr<AnimationCurve> curve; |
+ std::unique_ptr<AnimationCurve> curve; |
}; |
class CC_EXPORT AnimationEvents { |