| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 #if !defined(OS_MACOSX) | 402 #if !defined(OS_MACOSX) |
| 403 TEST_PPAPI_NACL(UDPSocketPrivate_Broadcast) | 403 TEST_PPAPI_NACL(UDPSocketPrivate_Broadcast) |
| 404 #endif // !defined(OS_MACOSX) | 404 #endif // !defined(OS_MACOSX) |
| 405 TEST_PPAPI_NACL(UDPSocketPrivate_SetSocketFeatureErrors) | 405 TEST_PPAPI_NACL(UDPSocketPrivate_SetSocketFeatureErrors) |
| 406 | 406 |
| 407 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(HostResolverPrivateDisallowed) | 407 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(HostResolverPrivateDisallowed) |
| 408 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPServerSocketPrivateDisallowed) | 408 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPServerSocketPrivateDisallowed) |
| 409 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPSocketPrivateDisallowed) | 409 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPSocketPrivateDisallowed) |
| 410 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(UDPSocketPrivateDisallowed) | 410 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(UDPSocketPrivateDisallowed) |
| 411 | 411 |
| 412 TEST_PPAPI_IN_PROCESS_VIA_HTTP(TCPServerSocketPrivate) | |
| 413 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(TCPServerSocketPrivate) | 412 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(TCPServerSocketPrivate) |
| 414 TEST_PPAPI_NACL(TCPServerSocketPrivate) | 413 TEST_PPAPI_NACL(TCPServerSocketPrivate) |
| 415 | 414 |
| 416 // HostResolver tests. | 415 // HostResolver tests. |
| 417 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, HostResolver) { | 416 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, HostResolver) { |
| 418 RunTestViaHTTP( | 417 RunTestViaHTTP( |
| 419 LIST_TEST(HostResolver_Empty) | 418 LIST_TEST(HostResolver_Empty) |
| 420 LIST_TEST(HostResolver_Resolve) | 419 LIST_TEST(HostResolver_Resolve) |
| 421 LIST_TEST(HostResolver_ResolveIPv4) | 420 LIST_TEST(HostResolver_ResolveIPv4) |
| 422 ); | 421 ); |
| (...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1510 LIST_TEST(FlashDRM_GetDeviceID) | 1509 LIST_TEST(FlashDRM_GetDeviceID) |
| 1511 #endif | 1510 #endif |
| 1512 LIST_TEST(FlashDRM_GetHmonitor) | 1511 LIST_TEST(FlashDRM_GetHmonitor) |
| 1513 LIST_TEST(FlashDRM_GetVoucherFile)); | 1512 LIST_TEST(FlashDRM_GetVoucherFile)); |
| 1514 } | 1513 } |
| 1515 | 1514 |
| 1516 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1515 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1517 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1516 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1518 | 1517 |
| 1519 #endif // ADDRESS_SANITIZER | 1518 #endif // ADDRESS_SANITIZER |
| OLD | NEW |