| 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/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/test/test_timeouts.h" | 8 #include "base/test/test_timeouts.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
| (...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 | 754 |
| 755 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics) | 755 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics) |
| 756 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess) | 756 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess) |
| 757 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray) | 757 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray) |
| 758 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement) | 758 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement) |
| 759 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) | 759 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) |
| 760 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 760 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 761 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 761 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 762 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 762 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 763 | 763 |
| 764 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 765 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 766 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 767 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 768 |
| 764 #endif // ADDRESS_SANITIZER | 769 #endif // ADDRESS_SANITIZER |
| OLD | NEW |