| 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 6d4e1d0a3b7d5613aecf595a71094ddfe22d7ba7..8ce413c393c6345c65be7056072670af3fe37100 100644
|
| --- a/ios/chrome/browser/signin/account_tracker_service_factory.cc
|
| +++ b/ios/chrome/browser/signin/account_tracker_service_factory.cc
|
| @@ -40,11 +40,12 @@ void AccountTrackerServiceFactory::RegisterBrowserStatePrefs(
|
| AccountTrackerService::RegisterPrefs(registry);
|
| }
|
|
|
| -scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor(
|
| +std::unique_ptr<KeyedService>
|
| +AccountTrackerServiceFactory::BuildServiceInstanceFor(
|
| web::BrowserState* context) const {
|
| ios::ChromeBrowserState* chrome_browser_state =
|
| ios::ChromeBrowserState::FromBrowserState(context);
|
| - scoped_ptr<AccountTrackerService> service(new AccountTrackerService());
|
| + std::unique_ptr<AccountTrackerService> service(new AccountTrackerService());
|
| service->Initialize(
|
| SigninClientFactory::GetForBrowserState(chrome_browser_state));
|
| return std::move(service);
|
|
|