| 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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1277 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); | 1277 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); |
| 1278 } | 1278 } |
| 1279 | 1279 |
| 1280 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1280 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 1281 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1281 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 1282 TEST_PPAPI_NACL(MouseCursor) | 1282 TEST_PPAPI_NACL(MouseCursor) |
| 1283 | 1283 |
| 1284 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) | 1284 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) |
| 1285 TEST_PPAPI_NACL(TrueTypeFont) | 1285 TEST_PPAPI_NACL(TrueTypeFont) |
| 1286 | 1286 |
| 1287 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) |
| 1288 TEST_PPAPI_NACL(VideoDestination) |
| 1289 |
| 1287 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) | 1290 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) |
| 1288 | 1291 TEST_PPAPI_NACL(VideoSource) |
| 1289 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) | |
| 1290 | 1292 |
| 1291 // PPB_Printing only implemented for out of process. | 1293 // PPB_Printing only implemented for out of process. |
| 1292 TEST_PPAPI_OUT_OF_PROCESS(Printing) | 1294 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
| 1293 | 1295 |
| 1294 // PPB_MessageLoop is only supported out-of-process. | 1296 // PPB_MessageLoop is only supported out-of-process. |
| 1295 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 | 1297 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 |
| 1296 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) | 1298 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) |
| 1297 // MessageLoop_Post starts a thread so only run it if pepper threads are | 1299 // MessageLoop_Post starts a thread so only run it if pepper threads are |
| 1298 // enabled. | 1300 // enabled. |
| 1299 #ifdef ENABLE_PEPPER_THREADING | 1301 #ifdef ENABLE_PEPPER_THREADING |
| (...skipping 23 matching lines...) Expand all Loading... |
| 1323 TEST_PPAPI_OUT_OF_PROCESS(PDF) | 1325 TEST_PPAPI_OUT_OF_PROCESS(PDF) |
| 1324 // Only implemented on Windows and ChromeOS currently. | 1326 // Only implemented on Windows and ChromeOS currently. |
| 1325 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) | 1327 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) |
| 1326 TEST_PPAPI_OUT_OF_PROCESS(FlashDRM) | 1328 TEST_PPAPI_OUT_OF_PROCESS(FlashDRM) |
| 1327 #endif | 1329 #endif |
| 1328 | 1330 |
| 1329 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1331 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1330 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1332 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1331 | 1333 |
| 1332 #endif // ADDRESS_SANITIZER | 1334 #endif // ADDRESS_SANITIZER |
| OLD | NEW |