| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view_browsertest.cc b/chrome/browser/ui/views/frame/browser_non_client_frame_view_browsertest.cc
|
| index 7a998ace71a7c6bb8fa986511543987a60822ff8..18466d25e205fde18eb29c38eee53c8081ee0082 100644
|
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view_browsertest.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view_browsertest.cc
|
| @@ -11,11 +11,18 @@
|
|
|
| using BrowserNonClientFrameViewBrowserTest = ExtensionBrowserTest;
|
|
|
| +// Test is Flaky on Windows see crbug.com/600201.
|
| +#if defined(OS_WIN)
|
| +#define MAYBE_InactiveSeparatorColor FLAKY_InactiveSeparatorColor
|
| +#else
|
| +#define MAYBE_InactiveSeparatorColor InactiveSeparatorColor
|
| +#endif
|
| +
|
| // Tests that the color returned by
|
| // BrowserNonClientFrameView::GetToolbarTopSeparatorColor() tracks the window
|
| // actiavtion state.
|
| IN_PROC_BROWSER_TEST_F(BrowserNonClientFrameViewBrowserTest,
|
| - InactiveSeparatorColor) {
|
| + MAYBE_InactiveSeparatorColor) {
|
| // In the default theme, the active and inactive separator colors may be the
|
| // same. Install a custom theme where they are different.
|
| InstallExtension(test_data_dir_.AppendASCII("theme"), 1);
|
|
|