OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |