| Index: ui/events/gesture_detection/velocity_tracker.h
|
| diff --git a/ui/events/gesture_detection/velocity_tracker.h b/ui/events/gesture_detection/velocity_tracker.h
|
| index 41265585fb7719a75df4c49f59f8b8d609e23cfc..5195a1fa993c57f4a24a6c800896ce153fda11b2 100644
|
| --- a/ui/events/gesture_detection/velocity_tracker.h
|
| +++ b/ui/events/gesture_detection/velocity_tracker.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "ui/events/gesture_detection/bitset_32.h"
|
|
|
| @@ -144,7 +145,7 @@ class VelocityTracker {
|
| base::TimeTicks last_event_time_;
|
| BitSet32 current_pointer_id_bits_;
|
| int32_t active_pointer_id_;
|
| - scoped_ptr<VelocityTrackerStrategy> strategy_;
|
| + std::unique_ptr<VelocityTrackerStrategy> strategy_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(VelocityTracker);
|
| };
|
|
|