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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 } | 1201 } |
1202 #if defined(OS_LINUX) // Disabled due to flakiness http://crbug.com/316925 | 1202 #if defined(OS_LINUX) // Disabled due to flakiness http://crbug.com/316925 |
1203 #define MAYBE_FlashMessageLoop DISABLED_FlashMessageLoop | 1203 #define MAYBE_FlashMessageLoop DISABLED_FlashMessageLoop |
1204 #else | 1204 #else |
1205 #define MAYBE_FlashMessageLoop FlashMessageLoop | 1205 #define MAYBE_FlashMessageLoop FlashMessageLoop |
1206 #endif | 1206 #endif |
1207 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_FlashMessageLoop) { | 1207 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_FlashMessageLoop) { |
1208 RUN_FLASH_MESSAGE_LOOP_SUBTESTS; | 1208 RUN_FLASH_MESSAGE_LOOP_SUBTESTS; |
1209 } | 1209 } |
1210 | 1210 |
1211 #if defined(OS_WIN) && defined(USE_AURA) | |
1212 // These tests fail with the test compositor which is what's used by default for | |
1213 // browser tests on Windows Aura. Renable when the software compositor is | |
1214 // available. | |
1215 #define MAYBE_Compositor DISABLED_Compositor | |
1216 #else // defined(OS_WIN) && defined(USE_AURA) | |
1217 #define MAYBE_Compositor Compositor | |
1218 #endif // defined(OS_WIN) && defined(USE_AURA) | |
1219 TEST_PPAPI_NACL(MAYBE_Compositor) | |
1220 | |
1221 TEST_PPAPI_NACL(MediaStreamAudioTrack) | 1211 TEST_PPAPI_NACL(MediaStreamAudioTrack) |
1222 | 1212 |
1223 TEST_PPAPI_NACL(MediaStreamVideoTrack) | 1213 TEST_PPAPI_NACL(MediaStreamVideoTrack) |
1224 | 1214 |
1225 TEST_PPAPI_NACL(MouseCursor) | 1215 TEST_PPAPI_NACL(MouseCursor) |
1226 | 1216 |
1227 TEST_PPAPI_NACL(NetworkProxy) | 1217 TEST_PPAPI_NACL(NetworkProxy) |
1228 | 1218 |
1229 TEST_PPAPI_NACL(TrueTypeFont) | 1219 TEST_PPAPI_NACL(TrueTypeFont) |
1230 | 1220 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 LIST_TEST(FlashDRM_GetHmonitor) | 1275 LIST_TEST(FlashDRM_GetHmonitor) |
1286 LIST_TEST(FlashDRM_GetVoucherFile)); | 1276 LIST_TEST(FlashDRM_GetVoucherFile)); |
1287 } | 1277 } |
1288 | 1278 |
1289 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1279 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
1290 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1280 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
1291 | 1281 |
1292 #if defined(OS_CHROMEOS) | 1282 #if defined(OS_CHROMEOS) |
1293 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) | 1283 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) |
1294 #endif | 1284 #endif |
OLD | NEW |