| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 10 #include "base/test/test_timeouts.h" | 10 #include "base/test/test_timeouts.h" |
| (...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ | 710 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ |
| 711 RunTestViaHTTP("FlashFullscreen"); | 711 RunTestViaHTTP("FlashFullscreen"); |
| 712 } | 712 } |
| 713 | 713 |
| 714 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) | 714 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) |
| 715 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) | 715 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) |
| 716 | 716 |
| 717 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 717 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
| 718 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 718 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 719 | 719 |
| 720 TEST_PPAPI_IN_PROCESS(FlashX509Certificate) |
| 721 TEST_PPAPI_OUT_OF_PROCESS(FlashX509Certificate) |
| 722 |
| 720 // http://crbug.com/63239 | 723 // http://crbug.com/63239 |
| 721 #if defined(OS_POSIX) | 724 #if defined(OS_POSIX) |
| 722 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 725 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 723 #else | 726 #else |
| 724 #define MAYBE_DirectoryReader DirectoryReader | 727 #define MAYBE_DirectoryReader DirectoryReader |
| 725 #endif | 728 #endif |
| 726 | 729 |
| 727 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 730 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 728 // Not implemented out of process: http://crbug.com/106129 | 731 // Not implemented out of process: http://crbug.com/106129 |
| 729 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 732 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 951 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 949 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 952 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 950 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 953 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 951 | 954 |
| 952 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 955 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 953 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 956 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 954 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 957 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 955 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 958 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 956 | 959 |
| 957 #endif // ADDRESS_SANITIZER | 960 #endif // ADDRESS_SANITIZER |
| OLD | NEW |