| 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 "chrome/test/ui/ppapi_uitest.h" | 5 #include "chrome/test/ui/ppapi_uitest.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ | 713 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ |
| 714 RunTestViaHTTP("FlashFullscreen"); | 714 RunTestViaHTTP("FlashFullscreen"); |
| 715 } | 715 } |
| 716 | 716 |
| 717 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) | 717 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) |
| 718 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) | 718 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) |
| 719 | 719 |
| 720 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 720 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
| 721 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 721 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 722 | 722 |
| 723 TEST_PPAPI_IN_PROCESS(FlashX509Certificate) |
| 724 TEST_PPAPI_OUT_OF_PROCESS(FlashX509Certificate) |
| 725 |
| 723 // http://crbug.com/63239 | 726 // http://crbug.com/63239 |
| 724 #if defined(OS_POSIX) | 727 #if defined(OS_POSIX) |
| 725 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 728 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 726 #else | 729 #else |
| 727 #define MAYBE_DirectoryReader DirectoryReader | 730 #define MAYBE_DirectoryReader DirectoryReader |
| 728 #endif | 731 #endif |
| 729 | 732 |
| 730 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 733 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 731 // Not implemented out of process: http://crbug.com/106129 | 734 // Not implemented out of process: http://crbug.com/106129 |
| 732 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 735 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 938 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 936 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 939 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 937 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 940 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 938 | 941 |
| 939 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 942 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 940 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 943 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 941 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 944 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 942 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 945 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 943 | 946 |
| 944 #endif // ADDRESS_SANITIZER | 947 #endif // ADDRESS_SANITIZER |
| OLD | NEW |