| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 #if !defined(OS_MACOSX) | 381 #if !defined(OS_MACOSX) |
| 382 TEST_PPAPI_NACL(UDPSocketPrivate_Broadcast) | 382 TEST_PPAPI_NACL(UDPSocketPrivate_Broadcast) |
| 383 #endif // !defined(OS_MACOSX) | 383 #endif // !defined(OS_MACOSX) |
| 384 TEST_PPAPI_NACL(UDPSocketPrivate_SetSocketFeatureErrors) | 384 TEST_PPAPI_NACL(UDPSocketPrivate_SetSocketFeatureErrors) |
| 385 | 385 |
| 386 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(HostResolverPrivateDisallowed) | 386 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(HostResolverPrivateDisallowed) |
| 387 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPServerSocketPrivateDisallowed) | 387 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPServerSocketPrivateDisallowed) |
| 388 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPSocketPrivateDisallowed) | 388 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(TCPSocketPrivateDisallowed) |
| 389 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(UDPSocketPrivateDisallowed) | 389 TEST_PPAPI_NACL_DISALLOWED_SOCKETS(UDPSocketPrivateDisallowed) |
| 390 | 390 |
| 391 TEST_PPAPI_IN_PROCESS_VIA_HTTP(TCPServerSocketPrivate) | |
| 392 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(TCPServerSocketPrivate) | 391 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(TCPServerSocketPrivate) |
| 393 TEST_PPAPI_NACL(TCPServerSocketPrivate) | 392 TEST_PPAPI_NACL(TCPServerSocketPrivate) |
| 394 | 393 |
| 395 // HostResolver tests. | 394 // HostResolver tests. |
| 396 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, HostResolver) { | 395 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, HostResolver) { |
| 397 RunTestViaHTTP( | 396 RunTestViaHTTP( |
| 398 LIST_TEST(HostResolver_Empty) | 397 LIST_TEST(HostResolver_Empty) |
| 399 LIST_TEST(HostResolver_Resolve) | 398 LIST_TEST(HostResolver_Resolve) |
| 400 LIST_TEST(HostResolver_ResolveIPv4) | 399 LIST_TEST(HostResolver_ResolveIPv4) |
| 401 ); | 400 ); |
| (...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 LIST_TEST(FlashDRM_GetDeviceID) | 1485 LIST_TEST(FlashDRM_GetDeviceID) |
| 1487 #endif | 1486 #endif |
| 1488 LIST_TEST(FlashDRM_GetHmonitor) | 1487 LIST_TEST(FlashDRM_GetHmonitor) |
| 1489 LIST_TEST(FlashDRM_GetVoucherFile)); | 1488 LIST_TEST(FlashDRM_GetVoucherFile)); |
| 1490 } | 1489 } |
| 1491 | 1490 |
| 1492 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1491 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1493 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1492 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1494 | 1493 |
| 1495 #endif // ADDRESS_SANITIZER | 1494 #endif // ADDRESS_SANITIZER |
| OLD | NEW |