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

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

Issue 7748012: Fix incorrect API version information. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 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_image_data.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 Mon Aug 15 11:01:06 2011. */ 6 /* From ppb_instance.idl modified Mon Aug 15 11:01:06 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
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 * module. 71 * module.
72 * 72 *
73 * @param[in] instance A <code>PP_Instance</code> indentifying one instance 73 * @param[in] instance A <code>PP_Instance</code> indentifying 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
82 struct PPB_Instance_0_5 {
83 struct PP_Var (*GetWindowObject)(PP_Instance instance);
84 struct PP_Var (*GetOwnerElementObject)(PP_Instance instance);
85 PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device);
dmichael (off chromium) 2011/08/30 16:02:37 Please update the IDL to remove the 0.5 version an
86 PP_Bool (*IsFullFrame)(PP_Instance instance);
87 };
81 /** 88 /**
82 * @} 89 * @}
83 */ 90 */
84 91
85 #endif /* PPAPI_C_PPB_INSTANCE_H_ */ 92 #endif /* PPAPI_C_PPB_INSTANCE_H_ */
86 93
OLDNEW
« no previous file with comments | « ppapi/c/ppb_image_data.h ('k') | ppapi/c/ppb_messaging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698