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 "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
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 "content/public/common/content_switches.h" | 9 #include "content/public/common/content_switches.h" |
10 #include "content/common/pepper_plugin_registry.h" | 10 #include "content/common/pepper_plugin_registry.h" |
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 | 808 |
809 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics) | 809 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics) |
810 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess) | 810 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess) |
811 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray) | 811 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray) |
812 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement) | 812 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement) |
813 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) | 813 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) |
814 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 814 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
815 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 815 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
816 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 816 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
817 | 817 |
| 818 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 819 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 820 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 821 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 822 |
818 #endif // ADDRESS_SANITIZER | 823 #endif // ADDRESS_SANITIZER |
OLD | NEW |