| Index: chrome/browser/autofill/autofill_interactive_uitest.cc
|
| diff --git a/chrome/browser/autofill/autofill_interactive_uitest.cc b/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| index 9ed6fd6c7e7c8f972f894328ff89c62ac48da562..06cc37344d8e858b83e0fd40c21ea2f51c8e5f86 100644
|
| --- a/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| +++ b/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| @@ -1491,13 +1491,13 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, MAYBE_AutofillAfterTranslate) {
|
| // The high level key presses execute the following: Select the first text
|
| // field, invoke the autofill popup list, select the first profile within the
|
| // list, and commit to the profile to populate the form.
|
| -// Flakily times out on windows. http://crbug.com/390564
|
| -// Flaky on the official cros-trunk crbug.com/516052
|
| -#if defined(OS_WIN) || defined(OFFICIAL_BUILD)
|
| +// Flakily times out on windows (https://crbug.com/390564), and on CrOS
|
| +// (https://crbug.com/516052).
|
| +#if defined(OS_WIN) || defined(OS_CHROMEOS)
|
| #define MAYBE_ComparePhoneNumbers DISABLED_ComparePhoneNumbers
|
| #else
|
| #define MAYBE_ComparePhoneNumbers ComparePhoneNumbers
|
| -#endif // defined(OS_WIN) || defined(OFFICIAL_BUILD)
|
| +#endif // defined(OS_WIN) || defined(OS_CHROMEOS)
|
| IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, MAYBE_ComparePhoneNumbers) {
|
| AutofillProfile profile;
|
| profile.SetRawInfo(NAME_FIRST, ASCIIToUTF16("Bob"));
|
|
|