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

Unified Diff: ui/compositor/float_animation_curve_adapter.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/compositor/float_animation_curve_adapter.h ('k') | ui/compositor/layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/float_animation_curve_adapter.cc
diff --git a/ui/compositor/float_animation_curve_adapter.cc b/ui/compositor/float_animation_curve_adapter.cc
index d40d70188014106df98f39b3f09a56d37b633885..df1f96ee6bfa2947aa0200097caafc11894f5ec4 100644
--- a/ui/compositor/float_animation_curve_adapter.cc
+++ b/ui/compositor/float_animation_curve_adapter.cc
@@ -4,6 +4,7 @@
#include "ui/compositor/float_animation_curve_adapter.h"
+#include "base/memory/ptr_util.h"
#include "cc/base/time_util.h"
namespace ui {
@@ -23,8 +24,8 @@ base::TimeDelta FloatAnimationCurveAdapter::Duration() const {
return duration_;
}
-scoped_ptr<cc::AnimationCurve> FloatAnimationCurveAdapter::Clone() const {
- return make_scoped_ptr(new FloatAnimationCurveAdapter(
+std::unique_ptr<cc::AnimationCurve> FloatAnimationCurveAdapter::Clone() const {
+ return base::WrapUnique(new FloatAnimationCurveAdapter(
tween_type_, initial_value_, target_value_, duration_));
}
« no previous file with comments | « ui/compositor/float_animation_curve_adapter.h ('k') | ui/compositor/layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698