OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ | 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ |
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ | 8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
11 | 11 |
12 #include <map> | 12 #include <map> |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 #include "native_client/src/shared/imc/nacl_imc.h" | 15 #include "native_client/src/shared/imc/nacl_imc.h" |
16 #include "ppapi/c/pp_instance.h" | 16 #include "ppapi/c/pp_instance.h" |
17 #include "ppapi/c/private/ppb_nacl_private.h" | 17 #include "ppapi/c/private/ppb_nacl_private.h" |
18 | 18 |
19 typedef PP_NaClResult (*LaunchNaClProcessFunc)(PP_Instance instance, | 19 typedef PP_NaClResult (*LaunchNaClProcessFunc)(PP_Instance instance, |
20 const char* alleged_url, | 20 const char* alleged_url, |
| 21 PP_Bool uses_irt, |
21 PP_Bool uses_ppapi, | 22 PP_Bool uses_ppapi, |
22 PP_Bool enable_ppapi_dev, | 23 PP_Bool enable_ppapi_dev, |
23 nacl::Handle* result_socket); | 24 nacl::Handle* result_socket); |
24 | 25 |
25 | 26 |
26 extern LaunchNaClProcessFunc launch_nacl_process; | 27 extern LaunchNaClProcessFunc launch_nacl_process; |
27 | 28 |
28 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ | 29 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ |
OLD | NEW |