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/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
10 #include "chrome/browser/ui/browser_navigator.h" | 10 #include "chrome/browser/ui/browser_navigator.h" |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 | 805 |
806 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 806 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
807 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 807 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
808 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 808 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
809 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 809 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
810 | 810 |
811 TEST_PPAPI_IN_PROCESS(MouseCursor) | 811 TEST_PPAPI_IN_PROCESS(MouseCursor) |
812 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 812 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
813 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 813 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
814 | 814 |
| 815 // PPB_MessageLoop is only supported out-of-process. |
| 816 // TODO(dmichael): Enable for NaCl with the IPC proxy. crbug.com/116317 |
| 817 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) |
| 818 // Note to sheriffs: MessageLoop_Post starts a thread, which has a history of |
| 819 // slowness, particularly on Windows XP. If this test times out, please try |
| 820 // marking it SLOW_ before disabling. |
| 821 // - dmichael |
| 822 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) |
| 823 |
815 // Only enabled in out-of-process mode. | 824 // Only enabled in out-of-process mode. |
816 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 825 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
817 | 826 |
818 #endif // ADDRESS_SANITIZER | 827 #endif // ADDRESS_SANITIZER |
OLD | NEW |