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 df4918a487c314d9004effea5dbd832febd4ffa5..c3fbc4849bfd5dc709cc1848941fd0b949a41217 100644 |
--- a/ios/chrome/browser/signin/account_tracker_service_factory.cc |
+++ b/ios/chrome/browser/signin/account_tracker_service_factory.cc |
@@ -4,6 +4,8 @@ |
#include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
+#include <utility> |
+ |
#include "base/memory/singleton.h" |
#include "components/keyed_service/ios/browser_state_dependency_manager.h" |
#include "components/signin/core/browser/account_tracker_service.h" |
@@ -45,7 +47,7 @@ scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor( |
scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); |
service->Initialize( |
SigninClientFactory::GetForBrowserState(chrome_browser_state)); |
- return service.Pass(); |
+ return std::move(service); |
} |
} // namespace ios |