Chromium Code Reviews| Index: cc/animation/layer_animation_controller.h |
| diff --git a/cc/animation/layer_animation_controller.h b/cc/animation/layer_animation_controller.h |
| index 307e89920ae213dad4233b8c02b82442c21f33e9..22a6f5367d093817276ba4382d8915a0818659d3 100644 |
| --- a/cc/animation/layer_animation_controller.h |
| +++ b/cc/animation/layer_animation_controller.h |
| @@ -14,7 +14,6 @@ |
| #include "cc/animation/animation_events.h" |
| #include "cc/animation/layer_animation_event_observer.h" |
| #include "cc/base/cc_export.h" |
| -#include "cc/base/scoped_ptr_vector.h" |
|
danakj
2015/11/17 01:12:16
include vector
|
| #include "ui/gfx/geometry/scroll_offset.h" |
| #include "ui/gfx/transform.h" |
| @@ -224,7 +223,7 @@ class CC_EXPORT LayerAnimationController |
| AnimationRegistrar* registrar_; |
| int id_; |
| - ScopedPtrVector<Animation> animations_; |
| + std::vector<scoped_ptr<Animation>> animations_; |
| // This is used to ensure that we don't spam the registrar. |
| bool is_active_; |