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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1202 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1202 TEST_PPAPI_IN_PROCESS(MouseCursor) |
1203 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1203 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
1204 TEST_PPAPI_NACL(MouseCursor) | 1204 TEST_PPAPI_NACL(MouseCursor) |
1205 | 1205 |
1206 // PPB_Printing only implemented for out of process. | 1206 // PPB_Printing only implemented for out of process. |
1207 TEST_PPAPI_OUT_OF_PROCESS(Printing) | 1207 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
1208 | 1208 |
1209 // PPB_MessageLoop is only supported out-of-process. | 1209 // PPB_MessageLoop is only supported out-of-process. |
1210 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 | 1210 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 |
1211 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) | 1211 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) |
| 1212 // MessageLoop_Post starts a thread so only run it if pepper threads are |
| 1213 // enabled. |
| 1214 #ifdef ENABLE_PEPPER_THREADING |
1212 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) | 1215 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
| 1216 #endif |
1213 | 1217 |
1214 // Going forward, Flash APIs will only work out-of-process. | 1218 // Going forward, Flash APIs will only work out-of-process. |
1215 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) | 1219 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
1216 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) | 1220 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) |
1217 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetSetting) | 1221 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetSetting) |
1218 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetCrashData) | 1222 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetCrashData) |
1219 // http://crbug.com/176822 | 1223 // http://crbug.com/176822 |
1220 #if !defined(OS_WIN) | 1224 #if !defined(OS_WIN) |
1221 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 1225 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
1222 #endif | 1226 #endif |
1223 TEST_PPAPI_OUT_OF_PROCESS(FlashFile) | 1227 TEST_PPAPI_OUT_OF_PROCESS(FlashFile) |
1224 // Mac/Aura reach NOTIMPLEMENTED/time out. | 1228 // Mac/Aura reach NOTIMPLEMENTED/time out. |
1225 // mac: http://crbug.com/96767 | 1229 // mac: http://crbug.com/96767 |
1226 // aura: http://crbug.com/104384 | 1230 // aura: http://crbug.com/104384 |
1227 #if defined(OS_MACOSX) | 1231 #if defined(OS_MACOSX) |
1228 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen | 1232 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen |
1229 #else | 1233 #else |
1230 #define MAYBE_FlashFullscreen FlashFullscreen | 1234 #define MAYBE_FlashFullscreen FlashFullscreen |
1231 #endif | 1235 #endif |
1232 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) | 1236 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) |
1233 | 1237 |
1234 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1238 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
1235 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1239 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
1236 | 1240 |
1237 #endif // ADDRESS_SANITIZER | 1241 #endif // ADDRESS_SANITIZER |
OLD | NEW |