| 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 ppp.idl modified Mon Nov 5 15:50:24 2012. */ | 6 /* From ppp.idl modified Tue Nov 13 08:48:25 2012. */ |
| 7 | 7 |
| 8 #ifndef PPAPI_C_PPP_H_ | 8 #ifndef PPAPI_C_PPP_H_ |
| 9 #define PPAPI_C_PPP_H_ | 9 #define PPAPI_C_PPP_H_ |
| 10 | 10 |
| 11 #include "ppapi/c/pp_macros.h" | 11 #include "ppapi/c/pp_macros.h" |
| 12 #include "ppapi/c/pp_module.h" | 12 #include "ppapi/c/pp_module.h" |
| 13 #include "ppapi/c/pp_stdint.h" | 13 #include "ppapi/c/pp_stdint.h" |
| 14 #include "ppapi/c/ppb.h" | 14 #include "ppapi/c/ppb.h" |
| 15 | 15 |
| 16 /** | 16 /** |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 /** | 138 /** |
| 139 * Defines the type of the <code>PPP_InitializeModule</code> function. | 139 * Defines the type of the <code>PPP_InitializeModule</code> function. |
| 140 */ | 140 */ |
| 141 typedef int32_t (*PP_InitializeModule_Func)( | 141 typedef int32_t (*PP_InitializeModule_Func)( |
| 142 PP_Module module, | 142 PP_Module module, |
| 143 PPB_GetInterface get_browser_interface); | 143 PPB_GetInterface get_browser_interface); |
| 144 | 144 |
| 145 /** | 145 /** |
| 146 * Defines the type of the <code>PPP_ShutdownModule</code> function. | 146 * Defines the type of the <code>PPP_ShutdownModule</code> function. |
| 147 */ | 147 */ |
| 148 typedef void (*PP_ShutdownModule_Func)(); | 148 typedef void (*PP_ShutdownModule_Func)(void); |
| 149 | 149 |
| 150 /** | 150 /** |
| 151 * Defines the type of the <code>PPP_ShutdownModule</code> function. | 151 * Defines the type of the <code>PPP_ShutdownModule</code> function. |
| 152 */ | 152 */ |
| 153 typedef const void* (*PP_GetInterface_Func)(const char* interface_name); | 153 typedef const void* (*PP_GetInterface_Func)(const char* interface_name); |
| 154 /** | 154 /** |
| 155 * @} | 155 * @} |
| 156 */ | 156 */ |
| 157 | 157 |
| 158 #endif /* PPAPI_C_PPP_H_ */ | 158 #endif /* PPAPI_C_PPP_H_ */ |
| 159 | 159 |
| OLD | NEW |