| 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ | 779 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen)
{ |
| 780 RunTestViaHTTP("FlashFullscreen"); | 780 RunTestViaHTTP("FlashFullscreen"); |
| 781 } | 781 } |
| 782 | 782 |
| 783 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) | 783 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) |
| 784 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) | 784 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) |
| 785 | 785 |
| 786 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 786 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
| 787 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 787 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 788 | 788 |
| 789 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) |
| 790 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) |
| 791 |
| 789 // http://crbug.com/63239 | 792 // http://crbug.com/63239 |
| 790 #if defined(OS_POSIX) | 793 #if defined(OS_POSIX) |
| 791 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 794 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 792 #else | 795 #else |
| 793 #define MAYBE_DirectoryReader DirectoryReader | 796 #define MAYBE_DirectoryReader DirectoryReader |
| 794 #endif | 797 #endif |
| 795 | 798 |
| 796 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 799 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 797 // Not implemented out of process: http://crbug.com/106129 | 800 // Not implemented out of process: http://crbug.com/106129 |
| 798 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 801 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 1023 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 1021 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 1024 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 1022 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 1025 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 1023 | 1026 |
| 1024 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 1027 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 1025 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1028 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 1026 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 1029 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 1027 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1030 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 1028 | 1031 |
| 1029 #endif // ADDRESS_SANITIZER | 1032 #endif // ADDRESS_SANITIZER |
| OLD | NEW |