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 Fri Jan 23 09:09:44 2015. */ | 6 /* From private/ppb_nacl_private.idl modified Sun Feb 8 11:33:30 2015. */ |
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 typedef void (*PP_OpenResourceCompletionCallback)(void* user_data, | 184 typedef void (*PP_OpenResourceCompletionCallback)(void* user_data, |
185 PP_FileHandle file_handle); | 185 PP_FileHandle file_handle); |
186 /** | 186 /** |
187 * @} | 187 * @} |
188 */ | 188 */ |
189 | 189 |
190 /** | 190 /** |
191 * @addtogroup Structs | 191 * @addtogroup Structs |
192 * @{ | 192 * @{ |
193 */ | 193 */ |
194 /* Corresponds to NaClFileInfo in | |
195 * native_client/src/trusted/validator/nacl_file_info.h */ | |
196 struct PP_NaClFileInfo { | 194 struct PP_NaClFileInfo { |
197 PP_FileHandle handle; | 195 PP_FileHandle handle; |
198 /* See NaClFileToken comment in nacl_file_info.h */ | 196 /* See NaClFileToken comment in nacl_process_host.h */ |
199 uint64_t token_lo; | 197 uint64_t token_lo; |
200 uint64_t token_hi; | 198 uint64_t token_hi; |
201 }; | 199 }; |
202 /** | 200 /** |
203 * @} | 201 * @} |
204 */ | 202 */ |
205 | 203 |
206 /** | 204 /** |
207 * @addtogroup Interfaces | 205 * @addtogroup Interfaces |
208 * @{ | 206 * @{ |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 void* stream_handler_user_data); | 354 void* stream_handler_user_data); |
357 }; | 355 }; |
358 | 356 |
359 typedef struct PPB_NaCl_Private_1_0 PPB_NaCl_Private; | 357 typedef struct PPB_NaCl_Private_1_0 PPB_NaCl_Private; |
360 /** | 358 /** |
361 * @} | 359 * @} |
362 */ | 360 */ |
363 | 361 |
364 #endif /* PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ */ | 362 #endif /* PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ */ |
365 | 363 |
OLD | NEW |