Index: components/autofill/browser/autofill_manager_unittest.cc |
diff --git a/components/autofill/browser/autofill_manager_unittest.cc b/components/autofill/browser/autofill_manager_unittest.cc |
index 52d322513d16ab955eddd27c8d8a5da6c9ff705e..ab9845cf3953494df8c1986759712a565bc08a0a 100644 |
--- a/components/autofill/browser/autofill_manager_unittest.cc |
+++ b/components/autofill/browser/autofill_manager_unittest.cc |
@@ -2736,9 +2736,10 @@ TEST_F(AutofillManagerTest, FormSubmittedWithDefaultValues) { |
// thing on all platforms. |
TEST_F(AutofillManagerTest, AuxiliaryProfilesReset) { |
PrefService* prefs = components::UserPrefs::Get(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); |