| 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/about_signin_internals_factory.h" | 5 #include "ios/chrome/browser/signin/about_signin_internals_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/about_signin_internals.h" | 11 #include "components/signin/core/browser/about_signin_internals.h" |
| 12 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 12 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" | 13 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
| 13 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" | 14 #include "ios/chrome/browser/signin/gaia_cookie_manager_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/chrome/browser/signin/signin_error_controller_factory.h" | 17 #include "ios/chrome/browser/signin/signin_error_controller_factory.h" |
| 17 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 18 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 18 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 19 | 19 |
| 20 namespace ios { | 20 namespace ios { |
| 21 | 21 |
| 22 AboutSigninInternalsFactory::AboutSigninInternalsFactory() | 22 AboutSigninInternalsFactory::AboutSigninInternalsFactory() |
| 23 : BrowserStateKeyedServiceFactory( | 23 : BrowserStateKeyedServiceFactory( |
| 24 "AboutSigninInternals", | 24 "AboutSigninInternals", |
| 25 BrowserStateDependencyManager::GetInstance()) { | 25 BrowserStateDependencyManager::GetInstance()) { |
| 26 DependsOn(AccountTrackerServiceFactory::GetInstance()); | 26 DependsOn(AccountTrackerServiceFactory::GetInstance()); |
| 27 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); | 27 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); |
| 28 DependsOn(OAuth2TokenServiceFactory::GetInstance()); | 28 DependsOn(OAuth2TokenServiceFactory::GetInstance()); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 SigninClientFactory::GetForBrowserState(chrome_browser_state)); | 60 SigninClientFactory::GetForBrowserState(chrome_browser_state)); |
| 61 return std::move(service); | 61 return std::move(service); |
| 62 } | 62 } |
| 63 | 63 |
| 64 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs( | 64 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs( |
| 65 user_prefs::PrefRegistrySyncable* user_prefs) { | 65 user_prefs::PrefRegistrySyncable* user_prefs) { |
| 66 AboutSigninInternals::RegisterPrefs(user_prefs); | 66 AboutSigninInternals::RegisterPrefs(user_prefs); |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace ios | 69 } // namespace ios |
| OLD | NEW |