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 | 5 |
6 /* From private/ppb_nacl_private.idl modified Thu Jun 5 08:59:03 2014. */ | 6 /* From private/ppb_nacl_private.idl modified Thu Jun 12 18:31:29 2014. */ |
7 | 7 |
8 #ifndef PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ | 8 #ifndef PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ |
9 #define PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ | 9 #define PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
15 #include "ppapi/c/pp_stdint.h" | 15 #include "ppapi/c/pp_stdint.h" |
16 #include "ppapi/c/pp_var.h" | 16 #include "ppapi/c/pp_var.h" |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 * The |enable_exception_handling| flag indicates whether or not the nexe | 246 * The |enable_exception_handling| flag indicates whether or not the nexe |
247 * will be able to use hardware exception handling. | 247 * will be able to use hardware exception handling. |
248 * The |enable_crash_throttling| flag indicates whether or not crashes of | 248 * The |enable_crash_throttling| flag indicates whether or not crashes of |
249 * the nexe contribute to crash throttling statisics and whether nexe starts | 249 * the nexe contribute to crash throttling statisics and whether nexe starts |
250 * are throttled by crash throttling. | 250 * are throttled by crash throttling. |
251 */ | 251 */ |
252 void (*LaunchSelLdr)( | 252 void (*LaunchSelLdr)( |
253 PP_Instance instance, | 253 PP_Instance instance, |
254 PP_Bool main_service_runtime, | 254 PP_Bool main_service_runtime, |
255 const char* alleged_url, | 255 const char* alleged_url, |
| 256 const struct PP_NaClFileInfo* nexe_file_info, |
256 PP_Bool uses_irt, | 257 PP_Bool uses_irt, |
257 PP_Bool uses_ppapi, | 258 PP_Bool uses_ppapi, |
258 PP_Bool uses_nonsfi_mode, | 259 PP_Bool uses_nonsfi_mode, |
259 PP_Bool enable_ppapi_dev, | 260 PP_Bool enable_ppapi_dev, |
260 PP_Bool enable_dyncode_syscalls, | 261 PP_Bool enable_dyncode_syscalls, |
261 PP_Bool enable_exception_handling, | 262 PP_Bool enable_exception_handling, |
262 PP_Bool enable_crash_throttling, | 263 PP_Bool enable_crash_throttling, |
263 const struct PPP_ManifestService_1_0* manifest_service_interface, | 264 const struct PPP_ManifestService_1_0* manifest_service_interface, |
264 void* manifest_service_user_data, | 265 void* manifest_service_user_data, |
265 void* imc_handle, | 266 void* imc_handle, |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 int32_t max_status); | 443 int32_t max_status); |
443 }; | 444 }; |
444 | 445 |
445 typedef struct PPB_NaCl_Private_1_0 PPB_NaCl_Private; | 446 typedef struct PPB_NaCl_Private_1_0 PPB_NaCl_Private; |
446 /** | 447 /** |
447 * @} | 448 * @} |
448 */ | 449 */ |
449 | 450 |
450 #endif /* PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ */ | 451 #endif /* PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ */ |
451 | 452 |
OLD | NEW |