| Index: ui/app_list/views/pulsing_block_view.cc
|
| diff --git a/ui/app_list/views/pulsing_block_view.cc b/ui/app_list/views/pulsing_block_view.cc
|
| index 08ea725805a0de36b7b45d86d14ffeef3c02a13f..9d515329305460a6969a2e86fa6c4698c7c27169 100644
|
| --- a/ui/app_list/views/pulsing_block_view.cc
|
| +++ b/ui/app_list/views/pulsing_block_view.cc
|
| @@ -31,9 +31,9 @@ void SchedulePulsingAnimation(ui::Layer* layer) {
|
| DCHECK(layer);
|
| DCHECK_EQ(arraysize(kAnimationOpacity), arraysize(kAnimationScale));
|
|
|
| - scoped_ptr<ui::LayerAnimationSequence> opacity_sequence(
|
| + std::unique_ptr<ui::LayerAnimationSequence> opacity_sequence(
|
| new ui::LayerAnimationSequence());
|
| - scoped_ptr<ui::LayerAnimationSequence> transform_sequence(
|
| + std::unique_ptr<ui::LayerAnimationSequence> transform_sequence(
|
| new ui::LayerAnimationSequence());
|
|
|
| // The animations loop infinitely.
|
|
|