Chromium Code Reviews| 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 76b5961a302701c2a89ecd48a2592dd2a4c14b26..6469b0e592dc1f1e23bbb5a024f32297026b59b9 100644 |
| --- a/chrome/browser/autofill/personal_data_manager.cc |
| +++ b/chrome/browser/autofill/personal_data_manager.cc |
| @@ -856,9 +856,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) |
|
Yaron
2013/02/28 20:40:43
The comment in the header would need an update too
apiccion
2013/03/01 01:04:34
Done.
|
| void PersonalDataManager::LoadAuxiliaryProfiles() { |
| } |
| #endif |