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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 #define MAYBE_Fullscreen Fullscreen | 717 #define MAYBE_Fullscreen Fullscreen |
718 #endif | 718 #endif |
719 | 719 |
720 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 720 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
721 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 721 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
722 TEST_PPAPI_NACL(MAYBE_Fullscreen) | 722 TEST_PPAPI_NACL(MAYBE_Fullscreen) |
723 | 723 |
724 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) | 724 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) |
725 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) | 725 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) |
726 | 726 |
727 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(DirectoryReader) | |
728 TEST_PPAPI_NACL(DirectoryReader); | |
729 | |
730 // There is no proxy. This is used for PDF metrics reporting, and PDF only | 727 // There is no proxy. This is used for PDF metrics reporting, and PDF only |
731 // runs in process, so there's currently no need for a proxy. | 728 // runs in process, so there's currently no need for a proxy. |
732 TEST_PPAPI_IN_PROCESS(UMA) | 729 TEST_PPAPI_IN_PROCESS(UMA) |
733 | 730 |
734 // NetAddress tests | 731 // NetAddress tests |
735 IN_PROC_BROWSER_TEST_F(PPAPITest, NetAddress) { | 732 IN_PROC_BROWSER_TEST_F(PPAPITest, NetAddress) { |
736 RunTestViaHTTP( | 733 RunTestViaHTTP( |
737 LIST_TEST(NetAddressPrivate_AreEqual) | 734 LIST_TEST(NetAddressPrivate_AreEqual) |
738 LIST_TEST(NetAddressPrivate_AreHostsEqual) | 735 LIST_TEST(NetAddressPrivate_AreHostsEqual) |
739 LIST_TEST(NetAddressPrivate_Describe) | 736 LIST_TEST(NetAddressPrivate_Describe) |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1247 TEST_PPAPI_OUT_OF_PROCESS(PDF) | 1244 TEST_PPAPI_OUT_OF_PROCESS(PDF) |
1248 // Only implemented on Windows and ChromeOS currently. | 1245 // Only implemented on Windows and ChromeOS currently. |
1249 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) | 1246 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) |
1250 TEST_PPAPI_OUT_OF_PROCESS(FlashDeviceID) | 1247 TEST_PPAPI_OUT_OF_PROCESS(FlashDeviceID) |
1251 #endif | 1248 #endif |
1252 | 1249 |
1253 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1250 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
1254 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1251 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
1255 | 1252 |
1256 #endif // ADDRESS_SANITIZER | 1253 #endif // ADDRESS_SANITIZER |
OLD | NEW |