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

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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 months 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_audio_config.h ('k') | ppapi/c/ppb_file_io.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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 ppb_core.idl modified Tue Aug 23 11:13:37 2011. */ 6 /* From ppb_core.idl modified Wed Oct 5 14:06:02 2011. */
7 7
8 #ifndef PPAPI_C_PPB_CORE_H_ 8 #ifndef PPAPI_C_PPB_CORE_H_
9 #define PPAPI_C_PPB_CORE_H_ 9 #define PPAPI_C_PPB_CORE_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_macros.h" 13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_resource.h" 14 #include "ppapi/c/pp_resource.h"
15 #include "ppapi/c/pp_stdint.h" 15 #include "ppapi/c/pp_stdint.h"
16 #include "ppapi/c/pp_time.h" 16 #include "ppapi/c/pp_time.h"
(...skipping 11 matching lines...) Expand all
28 28
29 /** 29 /**
30 * @addtogroup Interfaces 30 * @addtogroup Interfaces
31 * @{ 31 * @{
32 */ 32 */
33 /** 33 /**
34 * The <code>PPB_Core</code> interface contains pointers to functions related 34 * The <code>PPB_Core</code> interface contains pointers to functions related
35 * to memory management, time, and threads on the browser. 35 * to memory management, time, and threads on the browser.
36 * 36 *
37 */ 37 */
38 struct PPB_Core { 38 struct PPB_Core_1_0 {
39 /** 39 /**
40 * 40 *
41 * AddRefResource() adds a reference to a resource. 41 * AddRefResource() adds a reference to a resource.
42 * 42 *
43 * @param[in] config A <code>PP_Resource</code> corresponding to a 43 * @param[in] config A <code>PP_Resource</code> corresponding to a
44 * resource. 44 * resource.
45 */ 45 */
46 void (*AddRefResource)(PP_Resource resource); 46 void (*AddRefResource)(PP_Resource resource);
47 /** 47 /**
48 * ReleaseResource() removes a reference from a resource. 48 * ReleaseResource() removes a reference from a resource.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 * thread. 102 * thread.
103 * 103 *
104 * This function is useful for implementing sanity checks, and deciding if 104 * This function is useful for implementing sanity checks, and deciding if
105 * dispatching using CallOnMainThread() is required. 105 * dispatching using CallOnMainThread() is required.
106 * 106 *
107 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the 107 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the
108 * current thread is the main pepper thread, otherwise <code>PP_FALSE</code>. 108 * current thread is the main pepper thread, otherwise <code>PP_FALSE</code>.
109 */ 109 */
110 PP_Bool (*IsMainThread)(); 110 PP_Bool (*IsMainThread)();
111 }; 111 };
112
113 typedef struct PPB_Core_1_0 PPB_Core;
112 /** 114 /**
113 * @} 115 * @}
114 */ 116 */
115 117
116 #endif /* PPAPI_C_PPB_CORE_H_ */ 118 #endif /* PPAPI_C_PPB_CORE_H_ */
117 119
OLDNEW
« no previous file with comments | « ppapi/c/ppb_audio_config.h ('k') | ppapi/c/ppb_file_io.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698