| 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/ppapi/ppapi_test.h" | 5 #include "chrome/test/ppapi/ppapi_test.h" |
| 6 | 6 |
| 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 "chrome/browser/content_settings/host_content_settings_map.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 // http://crbug.com/146008 | 591 // http://crbug.com/146008 |
| 592 #define MAYBE_Fullscreen DISABLED_Fullscreen | 592 #define MAYBE_Fullscreen DISABLED_Fullscreen |
| 593 #else | 593 #else |
| 594 #define MAYBE_Fullscreen Fullscreen | 594 #define MAYBE_Fullscreen Fullscreen |
| 595 #endif | 595 #endif |
| 596 | 596 |
| 597 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 597 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
| 598 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 598 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
| 599 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Fullscreen) | 599 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Fullscreen) |
| 600 | 600 |
| 601 TEST_PPAPI_IN_PROCESS(FlashClipboard) | |
| 602 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | |
| 603 | |
| 604 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) | 601 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) |
| 605 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) | 602 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) |
| 606 | 603 |
| 607 // http://crbug.com/63239 | 604 // http://crbug.com/63239 |
| 608 #if defined(OS_POSIX) | 605 #if defined(OS_POSIX) |
| 609 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 606 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 610 #else | 607 #else |
| 611 #define MAYBE_DirectoryReader DirectoryReader | 608 #define MAYBE_DirectoryReader DirectoryReader |
| 612 #endif | 609 #endif |
| 613 | 610 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 929 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of | 926 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of |
| 930 // slowness, particularly on Windows XP. If this test times out, please try | 927 // slowness, particularly on Windows XP. If this test times out, please try |
| 931 // marking it SLOW_ before disabling. | 928 // marking it SLOW_ before disabling. |
| 932 // - dmichael | 929 // - dmichael |
| 933 // MessageLoop_Post starts a thread so only run it if pepper threads are | 930 // MessageLoop_Post starts a thread so only run it if pepper threads are |
| 934 // enabled. | 931 // enabled. |
| 935 #ifdef ENABLE_PEPPER_THREADING | 932 #ifdef ENABLE_PEPPER_THREADING |
| 936 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) | 933 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
| 937 #endif | 934 #endif |
| 938 | 935 |
| 939 // Only enabled in out-of-process mode. | 936 // Going forward, Flash APIs will only work out-of-process. |
| 937 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 940 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 938 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
| 941 | 939 |
| 942 #endif // ADDRESS_SANITIZER | 940 #endif // ADDRESS_SANITIZER |
| OLD | NEW |