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> |
| 8 |
7 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
8 #include "components/autofill/core/browser/personal_data_manager.h" | 10 #include "components/autofill/core/browser/personal_data_manager.h" |
9 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 11 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
10 #include "components/keyed_service/core/service_access_type.h" | 12 #include "components/keyed_service/core/service_access_type.h" |
11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
12 #include "components/signin/core/browser/signin_manager.h" | 14 #include "components/signin/core/browser/signin_manager.h" |
13 #include "ios/chrome/browser/application_context.h" | 15 #include "ios/chrome/browser/application_context.h" |
14 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
15 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" | 17 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
16 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 18 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 new autofill::PersonalDataManager( | 50 new autofill::PersonalDataManager( |
49 GetApplicationContext()->GetApplicationLocale())); | 51 GetApplicationContext()->GetApplicationLocale())); |
50 service->Init( | 52 service->Init( |
51 ios::WebDataServiceFactory::GetAutofillWebDataForBrowserState( | 53 ios::WebDataServiceFactory::GetAutofillWebDataForBrowserState( |
52 chrome_browser_state, ServiceAccessType::EXPLICIT_ACCESS), | 54 chrome_browser_state, ServiceAccessType::EXPLICIT_ACCESS), |
53 chrome_browser_state->GetPrefs(), | 55 chrome_browser_state->GetPrefs(), |
54 ios::AccountTrackerServiceFactory::GetForBrowserState( | 56 ios::AccountTrackerServiceFactory::GetForBrowserState( |
55 chrome_browser_state), | 57 chrome_browser_state), |
56 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state), | 58 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state), |
57 chrome_browser_state->IsOffTheRecord()); | 59 chrome_browser_state->IsOffTheRecord()); |
58 return service.Pass(); | 60 return std::move(service); |
59 } | 61 } |
OLD | NEW |