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

Side by Side Diff: ppapi/c/ppb_instance.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_input_event.h ('k') | ppapi/c/ppb_messaging.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_instance.idl modified Tue Aug 23 11:25:50 2011. */ 6 /* From ppb_instance.idl modified Wed Oct 5 14:06:02 2011. */
7 7
8 #ifndef PPAPI_C_PPB_INSTANCE_H_ 8 #ifndef PPAPI_C_PPB_INSTANCE_H_
9 #define PPAPI_C_PPB_INSTANCE_H_ 9 #define PPAPI_C_PPB_INSTANCE_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h" 12 #include "ppapi/c/pp_instance.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_var.h" 16 #include "ppapi/c/pp_var.h"
(...skipping 11 matching lines...) Expand all
28 28
29 29
30 /** 30 /**
31 * @addtogroup Interfaces 31 * @addtogroup Interfaces
32 * @{ 32 * @{
33 */ 33 */
34 /** 34 /**
35 * The PPB_Instance interface contains pointers to functions 35 * The PPB_Instance interface contains pointers to functions
36 * related to the module instance on a web page. 36 * related to the module instance on a web page.
37 */ 37 */
38 struct PPB_Instance { 38 struct PPB_Instance_1_0 {
39 /** 39 /**
40 * BindGraphics() binds the given graphics as the current display surface. 40 * BindGraphics() binds the given graphics as the current display surface.
41 * The contents of this device is what will be displayed in the instance's 41 * The contents of this device is what will be displayed in the instance's
42 * area on the web page. The device must be a 2D or a 3D device. 42 * area on the web page. The device must be a 2D or a 3D device.
43 * 43 *
44 * You can pass a <code>NULL</code> resource as the device parameter to 44 * You can pass a <code>NULL</code> resource as the device parameter to
45 * unbind all devices from the given instance. The instance will then appear 45 * unbind all devices from the given instance. The instance will then appear
46 * transparent. Re-binding the same device will return <code>PP_TRUE</code> 46 * transparent. Re-binding the same device will return <code>PP_TRUE</code>
47 * and will do nothing. 47 * and will do nothing.
48 * 48 *
(...skipping 23 matching lines...) Expand all
72 * 72 *
73 * @param[in] instance A <code>PP_Instance</code> identifying one instance 73 * @param[in] instance A <code>PP_Instance</code> identifying one instance
74 * of a module. 74 * of a module.
75 * 75 *
76 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the 76 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the
77 * instance is full-frame. 77 * instance is full-frame.
78 */ 78 */
79 PP_Bool (*IsFullFrame)(PP_Instance instance); 79 PP_Bool (*IsFullFrame)(PP_Instance instance);
80 }; 80 };
81 81
82 typedef struct PPB_Instance_1_0 PPB_Instance;
83
82 struct PPB_Instance_0_5 { 84 struct PPB_Instance_0_5 {
83 struct PP_Var (*GetWindowObject)(PP_Instance instance); 85 struct PP_Var (*GetWindowObject)(PP_Instance instance);
84 struct PP_Var (*GetOwnerElementObject)(PP_Instance instance); 86 struct PP_Var (*GetOwnerElementObject)(PP_Instance instance);
85 PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device); 87 PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device);
86 PP_Bool (*IsFullFrame)(PP_Instance instance); 88 PP_Bool (*IsFullFrame)(PP_Instance instance);
87 }; 89 };
88 /** 90 /**
89 * @} 91 * @}
90 */ 92 */
91 93
92 #endif /* PPAPI_C_PPB_INSTANCE_H_ */ 94 #endif /* PPAPI_C_PPB_INSTANCE_H_ */
93 95
OLDNEW
« no previous file with comments | « ppapi/c/ppb_input_event.h ('k') | ppapi/c/ppb_messaging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698