| 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 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1274 } | 1274 } |
| 1275 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, FlashMessageLoop) { | 1275 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, FlashMessageLoop) { |
| 1276 RunTest(LIST_TEST(FlashMessageLoop_Basics) | 1276 RunTest(LIST_TEST(FlashMessageLoop_Basics) |
| 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 // PPB_NetworkProxy is not supported in-process. |
| 1285 TEST_PPAPI_OUT_OF_PROCESS(NetworkProxy) |
| 1286 TEST_PPAPI_NACL(NetworkProxy) |
| 1287 |
| 1284 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) | 1288 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) |
| 1285 TEST_PPAPI_NACL(TrueTypeFont) | 1289 TEST_PPAPI_NACL(TrueTypeFont) |
| 1286 | 1290 |
| 1287 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) | 1291 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) |
| 1288 | 1292 |
| 1289 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) | 1293 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) |
| 1290 | 1294 |
| 1291 // PPB_Printing only implemented for out of process. | 1295 // PPB_Printing only implemented for out of process. |
| 1292 TEST_PPAPI_OUT_OF_PROCESS(Printing) | 1296 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
| 1293 | 1297 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1323 TEST_PPAPI_OUT_OF_PROCESS(PDF) | 1327 TEST_PPAPI_OUT_OF_PROCESS(PDF) |
| 1324 // Only implemented on Windows and ChromeOS currently. | 1328 // Only implemented on Windows and ChromeOS currently. |
| 1325 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) | 1329 #if (defined(OS_WIN) && defined(ENABLE_RLZ)) || defined(OS_CHROMEOS) |
| 1326 TEST_PPAPI_OUT_OF_PROCESS(FlashDRM) | 1330 TEST_PPAPI_OUT_OF_PROCESS(FlashDRM) |
| 1327 #endif | 1331 #endif |
| 1328 | 1332 |
| 1329 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1333 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1330 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1334 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1331 | 1335 |
| 1332 #endif // ADDRESS_SANITIZER | 1336 #endif // ADDRESS_SANITIZER |
| OLD | NEW |