Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Side by Side Diff: ppapi/c/ppp.h

Issue 11419192: Make PPAPI headers compilable with -Wstrict-prototypes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/c/ppb_message_loop.h ('k') | ppapi/c/private/ppb_gpu_blacklist_private.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ppapi/c/ppb_message_loop.h ('k') | ppapi/c/private/ppb_gpu_blacklist_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698