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