| Index: chrome/browser/ui/webui/options/clear_browser_data_browsertest.cc
|
| diff --git a/chrome/browser/ui/webui/options/clear_browser_data_browsertest.cc b/chrome/browser/ui/webui/options/clear_browser_data_browsertest.cc
|
| index 0502515273bb7d9711f8839228fb8b9bb577a168..a97cb8277e0642732b611060f384d4d446a2cb0c 100644
|
| --- a/chrome/browser/ui/webui/options/clear_browser_data_browsertest.cc
|
| +++ b/chrome/browser/ui/webui/options/clear_browser_data_browsertest.cc
|
| @@ -41,8 +41,17 @@ class ClearBrowserDataBrowserTest : public OptionsUIBrowserTest {
|
| }
|
| };
|
|
|
| +// http://crbug.com/458684
|
| +#if defined(OS_WIN) || defined(OS_MACOSX)
|
| +#define MAYBE_CommitButtonDisabledWhileDeletionInProgress \
|
| + DISABLED_CommitButtonDisabledWhileDeletionInProgress
|
| +#else
|
| +#define MAYBE_CommitButtonDisabledWhileDeletionInProgress \
|
| + CommitButtonDisabledWhileDeletionInProgress
|
| +#endif
|
| +
|
| IN_PROC_BROWSER_TEST_F(ClearBrowserDataBrowserTest,
|
| - CommitButtonDisabledWhileDeletionInProgress) {
|
| + MAYBE_CommitButtonDisabledWhileDeletionInProgress) {
|
| const char kCommitButtonId[] = "#clear-browser-data-commit";
|
| BrowsingDataRemoverCompletionInhibitor completion_inhibitor;
|
|
|
|
|