| 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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 } | 1389 } |
| 1390 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, FlashMessageLoop) { | 1390 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, FlashMessageLoop) { |
| 1391 RunTest(LIST_TEST(FlashMessageLoop_Basics) | 1391 RunTest(LIST_TEST(FlashMessageLoop_Basics) |
| 1392 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); | 1392 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); |
| 1393 } | 1393 } |
| 1394 | 1394 |
| 1395 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1395 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 1396 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1396 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 1397 TEST_PPAPI_NACL(MouseCursor) | 1397 TEST_PPAPI_NACL(MouseCursor) |
| 1398 | 1398 |
| 1399 // PPB_NetworkProxy is not supported in-process. |
| 1400 TEST_PPAPI_OUT_OF_PROCESS(NetworkProxy) |
| 1401 TEST_PPAPI_NACL(NetworkProxy) |
| 1402 |
| 1399 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) | 1403 TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont) |
| 1400 TEST_PPAPI_NACL(TrueTypeFont) | 1404 TEST_PPAPI_NACL(TrueTypeFont) |
| 1401 | 1405 |
| 1402 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) | 1406 TEST_PPAPI_OUT_OF_PROCESS(VideoSource) |
| 1403 | 1407 |
| 1404 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) | 1408 TEST_PPAPI_OUT_OF_PROCESS(VideoDestination) |
| 1405 | 1409 |
| 1406 // PPB_Printing only implemented for out of process. | 1410 // PPB_Printing only implemented for out of process. |
| 1407 TEST_PPAPI_OUT_OF_PROCESS(Printing) | 1411 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
| 1408 | 1412 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 LIST_TEST(FlashDRM_GetDeviceID) | 1448 LIST_TEST(FlashDRM_GetDeviceID) |
| 1445 #endif | 1449 #endif |
| 1446 LIST_TEST(FlashDRM_GetHmonitor) | 1450 LIST_TEST(FlashDRM_GetHmonitor) |
| 1447 LIST_TEST(FlashDRM_GetVoucherFile)); | 1451 LIST_TEST(FlashDRM_GetVoucherFile)); |
| 1448 } | 1452 } |
| 1449 | 1453 |
| 1450 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1454 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1451 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1455 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1452 | 1456 |
| 1453 #endif // ADDRESS_SANITIZER | 1457 #endif // ADDRESS_SANITIZER |
| OLD | NEW |