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

Unified Diff: cc/animation/animation_timeline_unittest.cc

Issue 1866203004: Convert //cc from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrcc: rebase 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 | « cc/animation/animation_timeline.h ('k') | cc/animation/animation_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_timeline_unittest.cc
diff --git a/cc/animation/animation_timeline_unittest.cc b/cc/animation/animation_timeline_unittest.cc
index 3b0bc5ab7301b923b71f7d2e20e64c296af37982..c3800240e7bc8cea598c4e95bfd3c44207e3f943 100644
--- a/cc/animation/animation_timeline_unittest.cc
+++ b/cc/animation/animation_timeline_unittest.cc
@@ -15,8 +15,9 @@ namespace cc {
namespace {
TEST(AnimationTimelineTest, SyncPlayersAttachDetach) {
- scoped_ptr<AnimationHost> host(AnimationHost::Create(ThreadInstance::MAIN));
- scoped_ptr<AnimationHost> host_impl(
+ std::unique_ptr<AnimationHost> host(
+ AnimationHost::Create(ThreadInstance::MAIN));
+ std::unique_ptr<AnimationHost> host_impl(
AnimationHost::Create(ThreadInstance::IMPL));
const int timeline_id = AnimationIdProvider::NextTimelineId();
@@ -60,8 +61,9 @@ TEST(AnimationTimelineTest, SyncPlayersAttachDetach) {
}
TEST(AnimationTimelineTest, ClearPlayers) {
- scoped_ptr<AnimationHost> host(AnimationHost::Create(ThreadInstance::MAIN));
- scoped_ptr<AnimationHost> host_impl(
+ std::unique_ptr<AnimationHost> host(
+ AnimationHost::Create(ThreadInstance::MAIN));
+ std::unique_ptr<AnimationHost> host_impl(
AnimationHost::Create(ThreadInstance::IMPL));
const int timeline_id = AnimationIdProvider::NextTimelineId();
« no previous file with comments | « cc/animation/animation_timeline.h ('k') | cc/animation/animation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698