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

Unified Diff: ios/chrome/browser/signin/account_tracker_service_factory.cc

Issue 2762973002: [ios] Add TODO to record usages of "return std::move(foo)" pattern. (Closed)
Patch Set: Created 3 years, 9 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: ios/chrome/browser/signin/account_tracker_service_factory.cc
diff --git a/ios/chrome/browser/signin/account_tracker_service_factory.cc b/ios/chrome/browser/signin/account_tracker_service_factory.cc
index 8ce413c393c6345c65be7056072670af3fe37100..db9c8b7d36544a6a8a5996c83c5bd082557c03a3 100644
--- a/ios/chrome/browser/signin/account_tracker_service_factory.cc
+++ b/ios/chrome/browser/signin/account_tracker_service_factory.cc
@@ -48,6 +48,7 @@ AccountTrackerServiceFactory::BuildServiceInstanceFor(
std::unique_ptr<AccountTrackerService> service(new AccountTrackerService());
service->Initialize(
SigninClientFactory::GetForBrowserState(chrome_browser_state));
+ // TODO(crbug.com/703565): remove std::move() once Xcode 9.0+ is required.
return std::move(service);
}
« no previous file with comments | « ios/chrome/browser/signin/account_reconcilor_factory.cc ('k') | ios/chrome/browser/signin/authentication_service_factory.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698