| Index: chrome/test/ppapi/ppapi_browsertest.cc
|
| diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
|
| index 65cc3b88bdff5ffddc877c2de1b48276fd707f05..c52d5fe279fa9f8015052893c55d9b57356bc2ce 100644
|
| --- a/chrome/test/ppapi/ppapi_browsertest.cc
|
| +++ b/chrome/test/ppapi/ppapi_browsertest.cc
|
| @@ -958,6 +958,16 @@ IN_PROC_BROWSER_TEST_F(PPAPIPrivateNaClPNaClTest, MAYBE_PNaCl_FileIO_Private) {
|
| );
|
| }
|
|
|
| +// PPB_FileMapping is only implemented on POSIX currently.
|
| +// http://crbug.com/83774
|
| +#if defined(OS_WIN)
|
| +#define MAYBE_FileMapping DISABLED_FileMapping
|
| +#else
|
| +#define MAYBE_FileMapping FileMapping
|
| +#endif
|
| +TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_FileMapping)
|
| +TEST_PPAPI_NACL(MAYBE_FileMapping)
|
| +
|
| // Note, the FileRef tests are split in to two, because all of them together
|
| // sometimes takes too long on windows: crbug.com/336999
|
| IN_PROC_BROWSER_TEST_F(PPAPITest, FileRef1) {
|
|
|