| Index: content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc b/content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc
|
| index 4a81273b7d168dc542e0543b494062594dbdf772..fb9aa48e63203c239f7e17cba8c0de96b60ff1e0 100644
|
| --- a/content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc
|
| +++ b/content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc
|
| @@ -327,7 +327,14 @@ class RendererAudioOutputStreamFactoryIntegrationTest : public Test {
|
| factory_context_;
|
| };
|
|
|
| -TEST_F(RendererAudioOutputStreamFactoryIntegrationTest, StreamIntegrationTest) {
|
| +// Flaky on Win x64. https://crbug.com/709394
|
| +#if defined(OS_WIN)
|
| +#define MAYBE_StreamIntegrationTest DISABLED_StreamIntegrationTest
|
| +#else
|
| +#define MAYBE_StreamIntegrationTest StreamIntegrationTest
|
| +#endif
|
| +TEST_F(RendererAudioOutputStreamFactoryIntegrationTest,
|
| + MAYBE_StreamIntegrationTest) {
|
| // Sets up the factory on the IO thread and runs client code on the UI thread.
|
| // Send a sine wave from the client and makes sure it's received by the output
|
| // stream.
|
|
|