| Index: chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc b/chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc
|
| index 99b0528afc65f78a766ac736719f475de55cd767..a4bbeabeb54d07287a937c3d2e627988e64c822a 100644
|
| --- a/chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc
|
| @@ -390,14 +390,14 @@ IN_PROC_BROWSER_TEST_F(TwoClientPreferencesSyncTest,
|
| ChangeBooleanPref(0, autofill::prefs::kAutofillAuxiliaryProfilesEnabled);
|
| ASSERT_TRUE(GetClient(0)->AwaitMutualSyncCycleCompletion(GetClient(1)));
|
|
|
| - // kAutofillAuxiliaryProfilesEnabled is only synced on Mac.
|
| -#if defined(OS_MACOSX)
|
| + // kAutofillAuxiliaryProfilesEnabled is only synced on Mac and Android.
|
| +#if defined(OS_MACOSX) || defined(OS_ANDROID)
|
| ASSERT_TRUE(
|
| BooleanPrefMatches(autofill::prefs::kAutofillAuxiliaryProfilesEnabled));
|
| #else
|
| ASSERT_FALSE(
|
| BooleanPrefMatches(autofill::prefs::kAutofillAuxiliaryProfilesEnabled));
|
| -#endif // OS_MACOSX
|
| +#endif // defined(OS_MACOSX) || defined(OS_ANDROID)
|
| }
|
|
|
| // TCM ID - 3717298.
|
|
|