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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
891 | 891 |
892 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 892 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
893 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 893 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
894 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 894 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
895 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 895 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
896 | 896 |
897 TEST_PPAPI_IN_PROCESS(MouseCursor) | 897 TEST_PPAPI_IN_PROCESS(MouseCursor) |
898 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 898 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
899 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 899 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
900 | 900 |
| 901 // PPB_Printing only implemented for out of process. |
| 902 TEST_PPAPI_OUT_OF_PROCESS(Printing) |
| 903 |
901 // PPB_MessageLoop is only supported out-of-process. | 904 // PPB_MessageLoop is only supported out-of-process. |
902 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 | 905 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 |
903 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) | 906 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) |
904 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of | 907 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of |
905 // slowness, particularly on Windows XP. If this test times out, please try | 908 // slowness, particularly on Windows XP. If this test times out, please try |
906 // marking it SLOW_ before disabling. | 909 // marking it SLOW_ before disabling. |
907 // - dmichael | 910 // - dmichael |
908 // MessageLoop_Post starts a thread so only run it if pepper threads are | 911 // MessageLoop_Post starts a thread so only run it if pepper threads are |
909 // enabled. | 912 // enabled. |
910 #ifdef ENABLE_PEPPER_THREADING | 913 #ifdef ENABLE_PEPPER_THREADING |
911 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) | 914 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
912 #endif | 915 #endif |
913 | 916 |
914 // Only enabled in out-of-process mode. | 917 // Only enabled in out-of-process mode. |
915 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 918 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
916 | 919 |
917 #endif // ADDRESS_SANITIZER | 920 #endif // ADDRESS_SANITIZER |
OLD | NEW |