| 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 // http://crbug.com/146008 | 602 // http://crbug.com/146008 |
| 603 #define MAYBE_Fullscreen DISABLED_Fullscreen | 603 #define MAYBE_Fullscreen DISABLED_Fullscreen |
| 604 #else | 604 #else |
| 605 #define MAYBE_Fullscreen Fullscreen | 605 #define MAYBE_Fullscreen Fullscreen |
| 606 #endif | 606 #endif |
| 607 | 607 |
| 608 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 608 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
| 609 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 609 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
| 610 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Fullscreen) | 610 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Fullscreen) |
| 611 | 611 |
| 612 TEST_PPAPI_IN_PROCESS(FlashClipboard) | |
| 613 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | |
| 614 | |
| 615 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) | 612 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) |
| 616 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) | 613 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) |
| 617 | 614 |
| 618 // http://crbug.com/63239 | 615 // http://crbug.com/63239 |
| 619 #if defined(OS_POSIX) | 616 #if defined(OS_POSIX) |
| 620 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 617 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 621 #else | 618 #else |
| 622 #define MAYBE_DirectoryReader DirectoryReader | 619 #define MAYBE_DirectoryReader DirectoryReader |
| 623 #endif | 620 #endif |
| 624 | 621 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of | 937 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of |
| 941 // slowness, particularly on Windows XP. If this test times out, please try | 938 // slowness, particularly on Windows XP. If this test times out, please try |
| 942 // marking it SLOW_ before disabling. | 939 // marking it SLOW_ before disabling. |
| 943 // - dmichael | 940 // - dmichael |
| 944 // MessageLoop_Post starts a thread so only run it if pepper threads are | 941 // MessageLoop_Post starts a thread so only run it if pepper threads are |
| 945 // enabled. | 942 // enabled. |
| 946 #ifdef ENABLE_PEPPER_THREADING | 943 #ifdef ENABLE_PEPPER_THREADING |
| 947 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) | 944 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
| 948 #endif | 945 #endif |
| 949 | 946 |
| 950 // Only enabled in out-of-process mode. | 947 // Going forward, Flash APIs will only work out-of-process. |
| 948 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 951 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 949 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
| 952 | 950 |
| 953 #endif // ADDRESS_SANITIZER | 951 #endif // ADDRESS_SANITIZER |
| OLD | NEW |