| 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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ | 718 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ |
| 719 RunTestViaHTTP("FlashFullscreen"); | 719 RunTestViaHTTP("FlashFullscreen"); |
| 720 } | 720 } |
| 721 | 721 |
| 722 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) | 722 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) |
| 723 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) | 723 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) |
| 724 | 724 |
| 725 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 725 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
| 726 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 726 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 727 | 727 |
| 728 TEST_PPAPI_IN_PROCESS(FlashX509Certificate) |
| 729 TEST_PPAPI_OUT_OF_PROCESS(FlashX509Certificate) |
| 730 |
| 728 // http://crbug.com/63239 | 731 // http://crbug.com/63239 |
| 729 #if defined(OS_POSIX) | 732 #if defined(OS_POSIX) |
| 730 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 733 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 731 #else | 734 #else |
| 732 #define MAYBE_DirectoryReader DirectoryReader | 735 #define MAYBE_DirectoryReader DirectoryReader |
| 733 #endif | 736 #endif |
| 734 | 737 |
| 735 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 738 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 736 // Not implemented out of process: http://crbug.com/106129 | 739 // Not implemented out of process: http://crbug.com/106129 |
| 737 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 740 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 959 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 957 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 960 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 958 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 961 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 959 | 962 |
| 960 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 963 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 961 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 964 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 962 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 965 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 963 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 966 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 964 | 967 |
| 965 #endif // ADDRESS_SANITIZER | 968 #endif // ADDRESS_SANITIZER |
| OLD | NEW |