OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stdint.h> |
| 6 |
5 #include "native_client/src/shared/platform/nacl_check.h" | 7 #include "native_client/src/shared/platform/nacl_check.h" |
6 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
7 #include "ppapi/c/ppb_core.h" | 9 #include "ppapi/c/ppb_core.h" |
8 #include "ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h" | 10 #include "ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h" |
9 #include "ppapi/native_client/tests/ppapi_test_lib/test_interface.h" | 11 #include "ppapi/native_client/tests/ppapi_test_lib/test_interface.h" |
10 | 12 |
11 | 13 |
12 namespace { | 14 namespace { |
13 | 15 |
14 void CrashingCallback(void* /*user_data*/, int32_t /*result*/) { | 16 void CrashingCallback(void* /*user_data*/, int32_t /*result*/) { |
(...skipping 10 matching lines...) Expand all Loading... |
25 | 27 |
26 } // namespace | 28 } // namespace |
27 | 29 |
28 void SetupTests() { | 30 void SetupTests() { |
29 RegisterTest("CrashInCallback", CrashInCallback); | 31 RegisterTest("CrashInCallback", CrashInCallback); |
30 } | 32 } |
31 | 33 |
32 void SetupPluginInterfaces() { | 34 void SetupPluginInterfaces() { |
33 // none | 35 // none |
34 } | 36 } |
OLD | NEW |