| 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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) | 673 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) |
| 674 | 674 |
| 675 // http://crbug.com/63239 | 675 // http://crbug.com/63239 |
| 676 #if defined(OS_POSIX) | 676 #if defined(OS_POSIX) |
| 677 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 677 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 678 #else | 678 #else |
| 679 #define MAYBE_DirectoryReader DirectoryReader | 679 #define MAYBE_DirectoryReader DirectoryReader |
| 680 #endif | 680 #endif |
| 681 | 681 |
| 682 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 682 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 683 // Not implemented out of process: http://crbug.com/106129 | 683 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_DirectoryReader) |
| 684 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | |
| 685 RunTestViaHTTP("DirectoryReader"); | |
| 686 } | |
| 687 | 684 |
| 688 // There is no proxy. This is used for PDF metrics reporting, and PDF only | 685 // There is no proxy. This is used for PDF metrics reporting, and PDF only |
| 689 // runs in process, so there's currently no need for a proxy. | 686 // runs in process, so there's currently no need for a proxy. |
| 690 TEST_PPAPI_IN_PROCESS(UMA) | 687 TEST_PPAPI_IN_PROCESS(UMA) |
| 691 | 688 |
| 692 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) | 689 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) |
| 693 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) | 690 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) |
| 694 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_Describe) | 691 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_Describe) |
| 695 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_ReplacePort) | 692 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_ReplacePort) |
| 696 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_GetAnyAddress) | 693 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_GetAnyAddress) |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen | 966 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen |
| 970 #else | 967 #else |
| 971 #define MAYBE_FlashFullscreen FlashFullscreen | 968 #define MAYBE_FlashFullscreen FlashFullscreen |
| 972 #endif | 969 #endif |
| 973 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) | 970 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) |
| 974 | 971 |
| 975 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 972 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 976 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 973 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 977 | 974 |
| 978 #endif // ADDRESS_SANITIZER | 975 #endif // ADDRESS_SANITIZER |
| OLD | NEW |