| Index: components/autofill/core/browser/personal_data_manager.cc
|
| diff --git a/components/autofill/core/browser/personal_data_manager.cc b/components/autofill/core/browser/personal_data_manager.cc
|
| index 28d92d4350386db2a54d691ff3e847a830d29a45..48438a87a93bd06e74f92b033320bbfb80ae1b4a 100644
|
| --- a/components/autofill/core/browser/personal_data_manager.cc
|
| +++ b/components/autofill/core/browser/personal_data_manager.cc
|
| @@ -866,9 +866,9 @@ void PersonalDataManager::LoadProfiles() {
|
| pending_profiles_query_ = database_->GetAutofillProfiles(this);
|
| }
|
|
|
| -// Win and Linux implementations do nothing. Mac and Android implementations
|
| -// fill in the contents of |auxiliary_profiles_|.
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +// Win, Linux, and iOS implementations do nothing. Mac and Android
|
| +// implementations fill in the contents of |auxiliary_profiles_|.
|
| +#if defined(OS_IOS) || (!defined(OS_MACOSX) && !defined(OS_ANDROID))
|
| void PersonalDataManager::LoadAuxiliaryProfiles() const {
|
| }
|
| #endif
|
|
|