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

Unified Diff: remoting/test/mock_access_token_fetcher.cc

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/test/mock_access_token_fetcher.h ('k') | remoting/test/protocol_perftest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/mock_access_token_fetcher.cc
diff --git a/remoting/test/mock_access_token_fetcher.cc b/remoting/test/mock_access_token_fetcher.cc
index 398f09f00137031094c320afdfc9f4bd8826bd09..29d8214309b5d8c2a05c349776da1439d4cf02d5 100644
--- a/remoting/test/mock_access_token_fetcher.cc
+++ b/remoting/test/mock_access_token_fetcher.cc
@@ -16,7 +16,7 @@ MockAccessTokenFetcher::MockAccessTokenFetcher() {}
MockAccessTokenFetcher::~MockAccessTokenFetcher() {}
void MockAccessTokenFetcher::SetAccessTokenFetcher(
- scoped_ptr<AccessTokenFetcher> fetcher) {
+ std::unique_ptr<AccessTokenFetcher> fetcher) {
internal_access_token_fetcher_ = std::move(fetcher);
ON_CALL(*this, GetAccessTokenFromAuthCode(_, _))
« no previous file with comments | « remoting/test/mock_access_token_fetcher.h ('k') | remoting/test/protocol_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698