| 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/autofill/personal_data_manager_factory.h" | 5 #include "ios/chrome/browser/autofill/personal_data_manager_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/autofill/core/browser/personal_data_manager.h" | 10 #include "components/autofill/core/browser/personal_data_manager.h" |
| 11 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 11 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| 12 #include "components/keyed_service/core/service_access_type.h" | 12 #include "components/keyed_service/core/service_access_type.h" |
| 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 14 #include "components/signin/core/browser/signin_manager.h" | 14 #include "components/signin/core/browser/signin_manager.h" |
| 15 #include "ios/chrome/browser/application_context.h" | 15 #include "ios/chrome/browser/application_context.h" |
| 16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 17 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 17 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" | 18 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
| 18 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 19 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 19 #include "ios/chrome/browser/web_data_service_factory.h" | 20 #include "ios/chrome/browser/web_data_service_factory.h" |
| 20 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 21 | 21 |
| 22 // static | 22 // static |
| 23 autofill::PersonalDataManager* PersonalDataManagerFactory::GetForBrowserState( | 23 autofill::PersonalDataManager* PersonalDataManagerFactory::GetForBrowserState( |
| 24 ios::ChromeBrowserState* browser_state) { | 24 ios::ChromeBrowserState* browser_state) { |
| 25 return static_cast<autofill::PersonalDataManager*>( | 25 return static_cast<autofill::PersonalDataManager*>( |
| 26 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 26 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 27 } | 27 } |
| 28 | 28 |
| 29 // static | 29 // static |
| 30 PersonalDataManagerFactory* PersonalDataManagerFactory::GetInstance() { | 30 PersonalDataManagerFactory* PersonalDataManagerFactory::GetInstance() { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 52 service->Init( | 52 service->Init( |
| 53 ios::WebDataServiceFactory::GetAutofillWebDataForBrowserState( | 53 ios::WebDataServiceFactory::GetAutofillWebDataForBrowserState( |
| 54 chrome_browser_state, ServiceAccessType::EXPLICIT_ACCESS), | 54 chrome_browser_state, ServiceAccessType::EXPLICIT_ACCESS), |
| 55 chrome_browser_state->GetPrefs(), | 55 chrome_browser_state->GetPrefs(), |
| 56 ios::AccountTrackerServiceFactory::GetForBrowserState( | 56 ios::AccountTrackerServiceFactory::GetForBrowserState( |
| 57 chrome_browser_state), | 57 chrome_browser_state), |
| 58 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state), | 58 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state), |
| 59 chrome_browser_state->IsOffTheRecord()); | 59 chrome_browser_state->IsOffTheRecord()); |
| 60 return std::move(service); | 60 return std::move(service); |
| 61 } | 61 } |
| OLD | NEW |