OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "content/browser/plugin_service.h" | 9 #include "content/browser/plugin_service.h" |
10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 } | 368 } |
369 // http://crbug.com/101154 | 369 // http://crbug.com/101154 |
370 TEST_F(OutOfProcessPPAPITest, DISABLED_FileIO) { | 370 TEST_F(OutOfProcessPPAPITest, DISABLED_FileIO) { |
371 RunTestViaHTTP("FileIO"); | 371 RunTestViaHTTP("FileIO"); |
372 } | 372 } |
373 TEST_PPAPI_NACL_VIA_HTTP(DISABLED_FileIO) | 373 TEST_PPAPI_NACL_VIA_HTTP(DISABLED_FileIO) |
374 | 374 |
375 | 375 |
376 TEST_PPAPI_IN_PROCESS_VIA_HTTP(FileRef) | 376 TEST_PPAPI_IN_PROCESS_VIA_HTTP(FileRef) |
377 // Disabled because it times out: http://crbug.com/89961 | 377 // Disabled because it times out: http://crbug.com/89961 |
378 //TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(FileRef) | 378 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(FileRef) |
379 TEST_PPAPI_NACL_VIA_HTTP(FileRef) | 379 TEST_PPAPI_NACL_VIA_HTTP(FileRef) |
380 | 380 |
381 | 381 |
382 TEST_PPAPI_IN_PROCESS_VIA_HTTP(FileSystem) | 382 TEST_PPAPI_IN_PROCESS_VIA_HTTP(FileSystem) |
383 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(FileSystem) | 383 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(FileSystem) |
384 TEST_PPAPI_NACL_VIA_HTTP(FileSystem) | 384 TEST_PPAPI_NACL_VIA_HTTP(FileSystem) |
385 | 385 |
386 // http://crbug.com/96767 and 104384 for aura. | 386 // http://crbug.com/96767 and 104384 for aura. |
387 #if !defined(OS_MACOSX) && !defined(USE_AURA) | 387 #if !defined(OS_MACOSX) && !defined(USE_AURA) |
388 #define MAYBE_FlashFullscreen FLAKY_FlashFullscreen | 388 #define MAYBE_FlashFullscreen FLAKY_FlashFullscreen |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) | 475 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) |
476 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) | 476 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
477 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) | 477 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) |
478 | 478 |
479 TEST_PPAPI_IN_PROCESS(WebSocket_InvalidConnect) | 479 TEST_PPAPI_IN_PROCESS(WebSocket_InvalidConnect) |
480 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) | 480 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) |
481 TEST_PPAPI_IN_PROCESS_WITH_WS(WebSocket_ValidConnect) | 481 TEST_PPAPI_IN_PROCESS_WITH_WS(WebSocket_ValidConnect) |
482 TEST_PPAPI_IN_PROCESS_WITH_WS(WebSocket_TextSendReceive) | 482 TEST_PPAPI_IN_PROCESS_WITH_WS(WebSocket_TextSendReceive) |
483 | 483 |
484 #endif // ADDRESS_SANITIZER | 484 #endif // ADDRESS_SANITIZER |
OLD | NEW |