| Index: ios/chrome/browser/signin/account_fetcher_service_factory.h
|
| diff --git a/ios/chrome/browser/signin/account_fetcher_service_factory.h b/ios/chrome/browser/signin/account_fetcher_service_factory.h
|
| index 3090acd13edd65bab6e01ec79c440cbef317f290..10150c954be60b7eb125c0470cd203fe56417b4b 100644
|
| --- a/ios/chrome/browser/signin/account_fetcher_service_factory.h
|
| +++ b/ios/chrome/browser/signin/account_fetcher_service_factory.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef IOS_CHROME_BROWSER_SIGNIN_ACCOUNT_FETCHER_SERVICE_FACTORY_H_
|
| #define IOS_CHROME_BROWSER_SIGNIN_ACCOUNT_FETCHER_SERVICE_FACTORY_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
|
|
|
| class AccountFetcherService;
|
| @@ -35,7 +36,7 @@ class AccountFetcherServiceFactory : public BrowserStateKeyedServiceFactory {
|
| // BrowserStateKeyedServiceFactory implementation
|
| void RegisterBrowserStatePrefs(
|
| user_prefs::PrefRegistrySyncable* registry) override;
|
| - scoped_ptr<KeyedService> BuildServiceInstanceFor(
|
| + std::unique_ptr<KeyedService> BuildServiceInstanceFor(
|
| web::BrowserState* context) const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AccountFetcherServiceFactory);
|
|
|