Chromium Code Reviews| 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_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 Loading... | |
| 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 |
| OLD | NEW |