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/ui/ppapi_uitest.h" | 5 #include "chrome/test/ui/ppapi_uitest.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
935 #else | 935 #else |
936 #define MAYBE_Audio_Creation Audio_Creation | 936 #define MAYBE_Audio_Creation Audio_Creation |
937 #endif | 937 #endif |
938 | 938 |
939 TEST_PPAPI_IN_PROCESS(MAYBE_Audio_Creation) | 939 TEST_PPAPI_IN_PROCESS(MAYBE_Audio_Creation) |
940 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) | 940 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) |
941 TEST_PPAPI_IN_PROCESS(Audio_Failures) | 941 TEST_PPAPI_IN_PROCESS(Audio_Failures) |
942 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_Audio_Creation) | 942 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_Audio_Creation) |
943 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) | 943 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) |
944 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) | 944 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) |
| 945 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Audio_Creation) |
| 946 TEST_PPAPI_NACL_VIA_HTTP(Audio_DestroyNoStop) |
| 947 TEST_PPAPI_NACL_VIA_HTTP(Audio_Failures) |
945 | 948 |
946 TEST_PPAPI_IN_PROCESS(View_CreateVisible); | 949 TEST_PPAPI_IN_PROCESS(View_CreateVisible); |
947 TEST_PPAPI_OUT_OF_PROCESS(View_CreateVisible); | 950 TEST_PPAPI_OUT_OF_PROCESS(View_CreateVisible); |
948 TEST_PPAPI_NACL_VIA_HTTP(View_CreateVisible); | 951 TEST_PPAPI_NACL_VIA_HTTP(View_CreateVisible); |
949 // This test ensures that plugins created in a background tab have their | 952 // This test ensures that plugins created in a background tab have their |
950 // initial visibility set to false. We don't bother testing in-process for this | 953 // initial visibility set to false. We don't bother testing in-process for this |
951 // custom test since the out of process code also exercises in-process. | 954 // custom test since the out of process code also exercises in-process. |
952 | 955 |
953 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View_CreateInvisible) { | 956 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View_CreateInvisible) { |
954 // Make a second tab in the foreground. | 957 // Make a second tab in the foreground. |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1012 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 1015 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
1013 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1016 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1014 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 1017 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
1015 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1018 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1016 | 1019 |
1017 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1020 TEST_PPAPI_IN_PROCESS(MouseCursor) |
1018 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1021 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
1019 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 1022 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
1020 | 1023 |
1021 #endif // ADDRESS_SANITIZER | 1024 #endif // ADDRESS_SANITIZER |
OLD | NEW |