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 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1540 } | 1540 } |
1541 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(View)) { | 1541 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(View)) { |
1542 RunTestViaHTTP(LIST_TEST(View_SizeChange) | 1542 RunTestViaHTTP(LIST_TEST(View_SizeChange) |
1543 LIST_TEST(View_ClipChange)); | 1543 LIST_TEST(View_ClipChange)); |
1544 } | 1544 } |
1545 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) { | 1545 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) { |
1546 RunTestViaHTTP(LIST_TEST(View_SizeChange) | 1546 RunTestViaHTTP(LIST_TEST(View_SizeChange) |
1547 LIST_TEST(View_ClipChange)); | 1547 LIST_TEST(View_ClipChange)); |
1548 } | 1548 } |
1549 | 1549 |
1550 IN_PROC_BROWSER_TEST_F(PPAPITest, ResourceArray) { | |
1551 RunTest(LIST_TEST(ResourceArray_Basics) | |
1552 LIST_TEST(ResourceArray_OutOfRangeAccess) | |
1553 LIST_TEST(ResourceArray_EmptyArray) | |
1554 LIST_TEST(ResourceArray_InvalidElement)); | |
1555 } | |
1556 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, ResourceArray) { | |
1557 RunTest(LIST_TEST(ResourceArray_Basics) | |
1558 LIST_TEST(ResourceArray_OutOfRangeAccess) | |
1559 LIST_TEST(ResourceArray_EmptyArray) | |
1560 LIST_TEST(ResourceArray_InvalidElement)); | |
1561 } | |
1562 | |
1563 IN_PROC_BROWSER_TEST_F(PPAPITest, FlashMessageLoop) { | 1550 IN_PROC_BROWSER_TEST_F(PPAPITest, FlashMessageLoop) { |
1564 RunTest(LIST_TEST(FlashMessageLoop_Basics) | 1551 RunTest(LIST_TEST(FlashMessageLoop_Basics) |
1565 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); | 1552 LIST_TEST(FlashMessageLoop_RunWithoutQuit)); |
1566 } | 1553 } |
1567 #if defined(OS_LINUX) // Disabled due to flakiness http://crbug.com/316925 | 1554 #if defined(OS_LINUX) // Disabled due to flakiness http://crbug.com/316925 |
1568 #define MAYBE_FlashMessageLoop DISABLED_FlashMessageLoop | 1555 #define MAYBE_FlashMessageLoop DISABLED_FlashMessageLoop |
1569 #else | 1556 #else |
1570 #define MAYBE_FlashMessageLoop FlashMessageLoop | 1557 #define MAYBE_FlashMessageLoop FlashMessageLoop |
1571 #endif | 1558 #endif |
1572 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_FlashMessageLoop) { | 1559 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_FlashMessageLoop) { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1640 LIST_TEST(FlashDRM_GetHmonitor) | 1627 LIST_TEST(FlashDRM_GetHmonitor) |
1641 LIST_TEST(FlashDRM_GetVoucherFile)); | 1628 LIST_TEST(FlashDRM_GetVoucherFile)); |
1642 } | 1629 } |
1643 | 1630 |
1644 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1631 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
1645 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1632 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
1646 | 1633 |
1647 #if defined(OS_CHROMEOS) | 1634 #if defined(OS_CHROMEOS) |
1648 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) | 1635 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) |
1649 #endif | 1636 #endif |
OLD | NEW |