| 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 "base/path_service.h" | 5 #include "base/path_service.h" |
| 6 #include "base/test/test_timeouts.h" | 6 #include "base/test/test_timeouts.h" |
| 7 #include "base/win/windows_version.h" | 7 #include "base/win/windows_version.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
| 10 #include "chrome/browser/extensions/extension_browsertest.h" | 10 #include "chrome/browser/extensions/extension_browsertest.h" |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 RUN_AUDIO_CONFIG_SUBTESTS; | 938 RUN_AUDIO_CONFIG_SUBTESTS; |
| 939 } | 939 } |
| 940 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, MAYBE_PPAPI_NACL(AudioConfig)) { | 940 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, MAYBE_PPAPI_NACL(AudioConfig)) { |
| 941 RUN_AUDIO_CONFIG_SUBTESTS; | 941 RUN_AUDIO_CONFIG_SUBTESTS; |
| 942 } | 942 } |
| 943 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, | 943 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, |
| 944 MAYBE_PNACL_NONSFI(AudioConfig)) { | 944 MAYBE_PNACL_NONSFI(AudioConfig)) { |
| 945 RUN_AUDIO_CONFIG_SUBTESTS; | 945 RUN_AUDIO_CONFIG_SUBTESTS; |
| 946 } | 946 } |
| 947 | 947 |
| 948 TEST_PPAPI_NACL(AudioEncoder) |
| 949 |
| 948 // PPB_Audio tests. | 950 // PPB_Audio tests. |
| 949 #define RUN_AUDIO_SUBTESTS \ | 951 #define RUN_AUDIO_SUBTESTS \ |
| 950 RunTestViaHTTP( \ | 952 RunTestViaHTTP( \ |
| 951 LIST_TEST(Audio_Creation) \ | 953 LIST_TEST(Audio_Creation) \ |
| 952 LIST_TEST(Audio_DestroyNoStop) \ | 954 LIST_TEST(Audio_DestroyNoStop) \ |
| 953 LIST_TEST(Audio_Failures) \ | 955 LIST_TEST(Audio_Failures) \ |
| 954 LIST_TEST(Audio_AudioCallback1) \ | 956 LIST_TEST(Audio_AudioCallback1) \ |
| 955 LIST_TEST(Audio_AudioCallback2) \ | 957 LIST_TEST(Audio_AudioCallback2) \ |
| 956 LIST_TEST(Audio_AudioCallback3) \ | 958 LIST_TEST(Audio_AudioCallback3) \ |
| 957 LIST_TEST(Audio_AudioCallback4) \ | 959 LIST_TEST(Audio_AudioCallback4) \ |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 MAYBE_PPAPI_NACL(NoSocketPermissions)) { | 1301 MAYBE_PPAPI_NACL(NoSocketPermissions)) { |
| 1300 RunTests("no_socket_permissions"); | 1302 RunTests("no_socket_permissions"); |
| 1301 } | 1303 } |
| 1302 | 1304 |
| 1303 IN_PROC_BROWSER_TEST_F(NewlibPackagedAppTest, | 1305 IN_PROC_BROWSER_TEST_F(NewlibPackagedAppTest, |
| 1304 MAYBE_PPAPI_NACL(SocketPermissions)) { | 1306 MAYBE_PPAPI_NACL(SocketPermissions)) { |
| 1305 RunTests("socket_permissions"); | 1307 RunTests("socket_permissions"); |
| 1306 } | 1308 } |
| 1307 | 1309 |
| 1308 #endif | 1310 #endif |
| OLD | NEW |