Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: ui/app_list/views/pulsing_block_view.cc

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/views/progress_bar_view.h ('k') | ui/app_list/views/search_box_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « ui/app_list/views/progress_bar_view.h ('k') | ui/app_list/views/search_box_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698