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

Unified Diff: ppapi/c/private/ppb_instance_private.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, 12 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/c/private/ppb_flash_udp_socket.h ('k') | ppapi/c/private/ppb_net_address_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_instance_private.h
diff --git a/ppapi/c/private/ppb_instance_private.h b/ppapi/c/private/ppb_instance_private.h
index 730d909a88dc6a70952ce0be8c46e9bac1e56b04..119ea893c75ec849d32bf3735fe4ed585176bd92 100644
--- a/ppapi/c/private/ppb_instance_private.h
+++ b/ppapi/c/private/ppb_instance_private.h
@@ -8,7 +8,8 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_var.h"
-#define PPB_INSTANCE_PRIVATE_INTERFACE "PPB_Instance_Private;0.1"
+#define PPB_INSTANCE_PRIVATE_INTERFACE_0_1 "PPB_Instance_Private;0.1"
+#define PPB_INSTANCE_PRIVATE_INTERFACE PPB_INSTANCE_PRIVATE_INTERFACE_0_1
/**
* @file
@@ -25,7 +26,7 @@
* trusted plugin instances.
*
*/
-struct PPB_Instance_Private {
+struct PPB_Instance_Private_0_1 {
/**
* GetWindowObject is a pointer to a function that determines
* the DOM window containing this module instance.
@@ -66,9 +67,10 @@ struct PPB_Instance_Private {
struct PP_Var script,
struct PP_Var* exception);
};
+
+typedef struct PPB_Instance_Private_0_1 PPB_Instance_Private;
/**
* @}
*/
#endif /* PPAPI_C_PRIVATE_PPB_INSTANCE_PRIVATE_H_ */
-
« no previous file with comments | « ppapi/c/private/ppb_flash_udp_socket.h ('k') | ppapi/c/private/ppb_net_address_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698