| 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_consistency_service_factory.h" | 5 #include "ios/chrome/browser/signin/account_consistency_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 9 #include "components/signin/ios/browser/account_consistency_service.h" | 9 #include "components/signin/ios/browser/account_consistency_service.h" |
| 10 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 10 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" | 11 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" |
| 11 #include "ios/chrome/browser/signin/account_reconcilor_factory.h" | 12 #include "ios/chrome/browser/signin/account_reconcilor_factory.h" |
| 12 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" | 13 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" |
| 13 #include "ios/chrome/browser/signin/signin_client_factory.h" | 14 #include "ios/chrome/browser/signin/signin_client_factory.h" |
| 14 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 15 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 15 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 16 | 16 |
| 17 namespace ios { | 17 namespace ios { |
| 18 | 18 |
| 19 AccountConsistencyServiceFactory::AccountConsistencyServiceFactory() | 19 AccountConsistencyServiceFactory::AccountConsistencyServiceFactory() |
| 20 : BrowserStateKeyedServiceFactory( | 20 : BrowserStateKeyedServiceFactory( |
| 21 "AccountConsistencyService", | 21 "AccountConsistencyService", |
| 22 BrowserStateDependencyManager::GetInstance()) { | 22 BrowserStateDependencyManager::GetInstance()) { |
| 23 DependsOn(ios::AccountReconcilorFactory::GetInstance()); | 23 DependsOn(ios::AccountReconcilorFactory::GetInstance()); |
| 24 DependsOn(ios::CookieSettingsFactory::GetInstance()); | 24 DependsOn(ios::CookieSettingsFactory::GetInstance()); |
| 25 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); | 25 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 55 return make_scoped_ptr(new AccountConsistencyService( | 55 return make_scoped_ptr(new AccountConsistencyService( |
| 56 chrome_browser_state, | 56 chrome_browser_state, |
| 57 ios::AccountReconcilorFactory::GetForBrowserState(chrome_browser_state), | 57 ios::AccountReconcilorFactory::GetForBrowserState(chrome_browser_state), |
| 58 ios::CookieSettingsFactory::GetForBrowserState(chrome_browser_state), | 58 ios::CookieSettingsFactory::GetForBrowserState(chrome_browser_state), |
| 59 GaiaCookieManagerServiceFactory::GetForBrowserState(chrome_browser_state), | 59 GaiaCookieManagerServiceFactory::GetForBrowserState(chrome_browser_state), |
| 60 SigninClientFactory::GetForBrowserState(chrome_browser_state), | 60 SigninClientFactory::GetForBrowserState(chrome_browser_state), |
| 61 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state))); | 61 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state))); |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace ios | 64 } // namespace ios |
| OLD | NEW |