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

Unified Diff: google_apis/gaia/account_tracker_unittest.cc

Issue 1873663002: Convert //google_apis from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: google_apis/gaia/account_tracker_unittest.cc
diff --git a/google_apis/gaia/account_tracker_unittest.cc b/google_apis/gaia/account_tracker_unittest.cc
index e846bb14dab2549d6a7110844e3c7771e3b59d04..6f078e75a6b8cf574a97d0df305a23b83b894215 100644
--- a/google_apis/gaia/account_tracker_unittest.cc
+++ b/google_apis/gaia/account_tracker_unittest.cc
@@ -346,10 +346,10 @@ class IdentityAccountTrackerTest : public testing::Test {
base::MessageLoopForIO message_loop_; // net:: stuff needs IO message loop.
net::TestURLFetcherFactory test_fetcher_factory_;
- scoped_ptr<FakeOAuth2TokenService> fake_oauth2_token_service_;
- scoped_ptr<FakeIdentityProvider> fake_identity_provider_;
+ std::unique_ptr<FakeOAuth2TokenService> fake_oauth2_token_service_;
+ std::unique_ptr<FakeIdentityProvider> fake_identity_provider_;
- scoped_ptr<AccountTracker> account_tracker_;
+ std::unique_ptr<AccountTracker> account_tracker_;
AccountTrackerObserver observer_;
};

Powered by Google App Engine
This is Rietveld 408576698