| 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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); | 1249 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); |
| 1250 } | 1250 } |
| 1251 | 1251 |
| 1252 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1252 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 1253 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1253 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 1254 TEST_PPAPI_NACL(MouseCursor) | 1254 TEST_PPAPI_NACL(MouseCursor) |
| 1255 | 1255 |
| 1256 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) | 1256 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) |
| 1257 TEST_PPAPI_NACL(TrueTypeFont) | 1257 TEST_PPAPI_NACL(TrueTypeFont) |
| 1258 | 1258 |
| 1259 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) |
| 1260 |
| 1261 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) |
| 1262 |
| 1259 // PPB_Printing only implemented for out of process. | 1263 // PPB_Printing only implemented for out of process. |
| 1260 TEST_PPAPI_OUT_OF_PROCESS(Printing) | 1264 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
| 1261 | 1265 |
| 1262 // PPB_MessageLoop is only supported out-of-process. | 1266 // PPB_MessageLoop is only supported out-of-process. |
| 1263 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 | 1267 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 |
| 1264 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) | 1268 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) |
| 1265 // MessageLoop_Post starts a thread so only run it if pepper threads are | 1269 // MessageLoop_Post starts a thread so only run it if pepper threads are |
| 1266 // enabled. | 1270 // enabled. |
| 1267 #ifdef ENABLE_PEPPER_THREADING | 1271 #ifdef ENABLE_PEPPER_THREADING |
| 1268 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) | 1272 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1291 TEST_PPAPI_OUT_OF_PROCESS(PDF) | 1295 TEST_PPAPI_OUT_OF_PROCESS(PDF) |
| 1292 // Only implemented on Windows and ChromeOS currently. | 1296 // Only implemented on Windows and ChromeOS currently. |
| 1293 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) | 1297 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) |
| 1294 TEST_PPAPI_OUT_OF_PROCESS(FlashDeviceID) | 1298 TEST_PPAPI_OUT_OF_PROCESS(FlashDeviceID) |
| 1295 #endif | 1299 #endif |
| 1296 | 1300 |
| 1297 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1301 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1298 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1302 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1299 | 1303 |
| 1300 #endif // ADDRESS_SANITIZER | 1304 #endif // ADDRESS_SANITIZER |
| OLD | NEW |