| Index: chrome/test/ppapi/ppapi_browsertest.cc
|
| diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
|
| index 8152e859c117b0d5661106b7c9bd74e51def556e..0c80b239753d556963cd09f332b448b780353804 100644
|
| --- a/chrome/test/ppapi/ppapi_browsertest.cc
|
| +++ b/chrome/test/ppapi/ppapi_browsertest.cc
|
| @@ -1297,8 +1297,12 @@ TEST_PPAPI_OUT_OF_PROCESS(FlashFile)
|
| // mac: http://crbug.com/96767
|
| // aura: http://crbug.com/104384
|
| // cros: http://crbug.com/396502
|
| -// win: http://crbug.com/419644
|
| -TEST_PPAPI_OUT_OF_PROCESS(DISABLED_FlashFullscreen)
|
| +#if defined(OS_MACOSX) || defined(OS_CHROMEOS)
|
| +#define MAYBE_FlashFullscreen DISABLED_FlashFullscreen
|
| +#else
|
| +#define MAYBE_FlashFullscreen FlashFullscreen
|
| +#endif
|
| +TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen)
|
|
|
| TEST_PPAPI_OUT_OF_PROCESS(PDF)
|
|
|
|
|