| Index: chrome/browser/autofill/personal_data_manager.cc
|
| diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc
|
| index 8b8b4898c386fce6a9fc72f29f2699b7a0c265de..34b08ff27d028da89e98c85f4d736dcbcbd267d4 100644
|
| --- a/chrome/browser/autofill/personal_data_manager.cc
|
| +++ b/chrome/browser/autofill/personal_data_manager.cc
|
| @@ -824,9 +824,9 @@ void PersonalDataManager::LoadProfiles() {
|
| pending_profiles_query_ = autofill_data->GetAutofillProfiles(this);
|
| }
|
|
|
| -// Win and Linux implementations do nothing. Mac implementation fills in the
|
| -// contents of |auxiliary_profiles_|.
|
| -#if !defined(OS_MACOSX)
|
| +// Win and Linux implementations do nothing. Mac and Android implementations
|
| +// fill in the contents of |auxiliary_profiles_|.
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| void PersonalDataManager::LoadAuxiliaryProfiles() {
|
| }
|
| #endif
|
|
|