| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ios/chrome/browser/signin/account_fetcher_service_factory.h" | 5 #include "ios/chrome/browser/signin/account_fetcher_service_factory.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 11 #include "components/signin/core/browser/account_fetcher_service.h" | 11 #include "components/signin/core/browser/account_fetcher_service.h" |
| 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 13 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 13 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" | 14 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
| 14 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" | 15 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" |
| 15 #include "ios/chrome/browser/signin/signin_client_factory.h" | 16 #include "ios/chrome/browser/signin/signin_client_factory.h" |
| 16 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 17 | 17 |
| 18 namespace ios { | 18 namespace ios { |
| 19 | 19 |
| 20 AccountFetcherServiceFactory::AccountFetcherServiceFactory() | 20 AccountFetcherServiceFactory::AccountFetcherServiceFactory() |
| 21 : BrowserStateKeyedServiceFactory( | 21 : BrowserStateKeyedServiceFactory( |
| 22 "AccountFetcherService", | 22 "AccountFetcherService", |
| 23 BrowserStateDependencyManager::GetInstance()) { | 23 BrowserStateDependencyManager::GetInstance()) { |
| 24 DependsOn(AccountTrackerServiceFactory::GetInstance()); | 24 DependsOn(AccountTrackerServiceFactory::GetInstance()); |
| 25 DependsOn(OAuth2TokenServiceFactory::GetInstance()); | 25 DependsOn(OAuth2TokenServiceFactory::GetInstance()); |
| 26 DependsOn(SigninClientFactory::GetInstance()); | 26 DependsOn(SigninClientFactory::GetInstance()); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 51 ios::ChromeBrowserState::FromBrowserState(context); | 51 ios::ChromeBrowserState::FromBrowserState(context); |
| 52 scoped_ptr<AccountFetcherService> service(new AccountFetcherService()); | 52 scoped_ptr<AccountFetcherService> service(new AccountFetcherService()); |
| 53 service->Initialize( | 53 service->Initialize( |
| 54 SigninClientFactory::GetForBrowserState(browser_state), | 54 SigninClientFactory::GetForBrowserState(browser_state), |
| 55 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), | 55 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), |
| 56 ios::AccountTrackerServiceFactory::GetForBrowserState(browser_state)); | 56 ios::AccountTrackerServiceFactory::GetForBrowserState(browser_state)); |
| 57 return std::move(service); | 57 return std::move(service); |
| 58 } | 58 } |
| 59 | 59 |
| 60 } // namespace ios | 60 } // namespace ios |
| OLD | NEW |