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

Unified Diff: ppapi/generators/test_gen_pnacl/test_interfaces.idl

Issue 9110045: Change IDL shim/wrapper generator to use version numbers in struct names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/generators/idl_gen_wrapper.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/test_gen_pnacl/test_interfaces.idl
diff --git a/ppapi/generators/test_gen_pnacl/test_interfaces.idl b/ppapi/generators/test_gen_pnacl/test_interfaces.idl
index 731fce0941c2618467e6a56f16f3fb94fc9761c9..78c21eb9429b9c65cd3907a109955f6ca1094e1e 100644
--- a/ppapi/generators/test_gen_pnacl/test_interfaces.idl
+++ b/ppapi/generators/test_gen_pnacl/test_interfaces.idl
@@ -39,8 +39,8 @@ struct some_struct2 {
/*
* static __attribute__((pnaclcall)) int32_t
* Pnacl_M15_PPB_Iface_struct_wrap_foo1(int32_t a, struct some_struct b) {
- * const struct PPB_Iface_struct_wrap *iface =
- * Pnacl_WrapperInfo_PPB_Iface_struct_wrap.real_iface;
+ * const struct PPB_Iface_struct_wrap_2_0 *iface =
+ * Pnacl_WrapperInfo_PPB_Iface_struct_wrap_2_0.real_iface;
* return iface->foo1(a, b);
* }
*/
@@ -52,8 +52,8 @@ interface PPB_Iface_struct_wrap {
/*
* static __attribute__((pnaclcall)) int32_t
* Pnacl_M15_PPB_Iface_union_wrap_foo1(int32_t a, union some_union b) {
- * const struct PPB_Iface_union_wrap *iface =
- * Pnacl_WrapperInfo_PPB_Iface_union_wrap.real_iface;
+ * const struct PPB_Iface_union_wrap_2_0 *iface =
+ * Pnacl_WrapperInfo_PPB_Iface_union_wrap_2_0.real_iface;
* return iface->foo1(a, b);
* }
*/
« no previous file with comments | « ppapi/generators/idl_gen_wrapper.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698