| Index: ui/compositor/layer.h
|
| diff --git a/ui/compositor/layer.h b/ui/compositor/layer.h
|
| index 187a3d9fcae1d180106e5572d46c376d59aef558..d6f593a0f418deb6edee2f27374eda91d5d4cf84 100644
|
| --- a/ui/compositor/layer.h
|
| +++ b/ui/compositor/layer.h
|
| @@ -15,7 +15,6 @@
|
| #include "cc/animation/animation_events.h"
|
| #include "cc/animation/layer_animation_event_observer.h"
|
| #include "cc/base/region.h"
|
| -#include "cc/base/scoped_ptr_vector.h"
|
| #include "cc/layers/content_layer_client.h"
|
| #include "cc/layers/layer_client.h"
|
| #include "cc/layers/surface_layer.h"
|
| @@ -505,7 +504,7 @@ class COMPOSITOR_EXPORT Layer
|
|
|
| // Animations that are passed to AddThreadedAnimation before this layer is
|
| // added to a tree.
|
| - cc::ScopedPtrVector<cc::Animation> pending_threaded_animations_;
|
| + std::vector<scoped_ptr<cc::Animation>> pending_threaded_animations_;
|
|
|
| // Ownership of the layer is held through one of the strongly typed layer
|
| // pointers, depending on which sort of layer this is.
|
|
|