Index: chrome/browser/autofill/autofill_manager_unittest.cc |
diff --git a/chrome/browser/autofill/autofill_manager_unittest.cc b/chrome/browser/autofill/autofill_manager_unittest.cc |
index 7d494b991b047604249fb4ce87caa2a2c1e0fedc..a70e1cc4a03cca473e02e313115706757b8dfdfa 100644 |
--- a/chrome/browser/autofill/autofill_manager_unittest.cc |
+++ b/chrome/browser/autofill/autofill_manager_unittest.cc |
@@ -2703,9 +2703,10 @@ TEST_F(AutofillManagerTest, FormSubmittedWithDefaultValues) { |
// thing on all platforms. |
TEST_F(AutofillManagerTest, AuxiliaryProfilesReset) { |
PrefService* prefs = PrefServiceFromBrowserContext(profile()); |
-#if defined(OS_MACOSX) |
- // Auxiliary profiles is implemented on Mac only. It enables Mac Address |
- // Book integration. |
+#if defined(OS_MACOSX) || defined(OS_ANDROID) |
+ // Auxiliary profiles is implemented on Mac and Android only. |
+ // OSX: enables Mac Address Book integration. |
+ // Android: enables integration with user's contact profile. |
ASSERT_TRUE(prefs->GetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled)); |
prefs->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled, false); |
prefs->ClearPref(prefs::kAutofillAuxiliaryProfilesEnabled); |