| Index: chrome/test/ppapi/ppapi_browsertest.cc
|
| diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
|
| index 924d5f47c2641aa73bb5dd6835fab5bfe9761203..812e32422e8c8608d8960581dad34299fd6561a4 100644
|
| --- a/chrome/test/ppapi/ppapi_browsertest.cc
|
| +++ b/chrome/test/ppapi/ppapi_browsertest.cc
|
| @@ -1161,7 +1161,13 @@ TEST_PPAPI_NACL_SUBTESTS(MAYBE_Compositor1, RUN_COMPOSITOR_SUBTESTS_1)
|
| #endif
|
| TEST_PPAPI_NACL(MAYBE_MediaStreamAudioTrack)
|
|
|
| -TEST_PPAPI_NACL(MediaStreamVideoTrack)
|
| +#if defined(OS_WIN)
|
| +// Flaky on Windows (crbug.com/633519)
|
| +#define MAYBE_MediaStreamVideoTrack DISABLED_MediaStreamVideoTrack
|
| +#else
|
| +#define MAYBE_MediaStreamVideoTrack MediaStreamVideoTrack
|
| +#endif
|
| +TEST_PPAPI_NACL(MAYBE_MediaStreamVideoTrack)
|
|
|
| TEST_PPAPI_NACL(MouseCursor)
|
|
|
|
|