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

Unified Diff: ppapi/c/private/ppb_flash_menu.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_fullscreen.h ('k') | ppapi/c/private/ppb_flash_net_connector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_flash_menu.h
diff --git a/ppapi/c/private/ppb_flash_menu.h b/ppapi/c/private/ppb_flash_menu.h
index d7cbf4d3cffbc3633cc993eefd6ac6800202a812..61f3630c9bb640f585e973b3e050ac6f3b92cb01 100644
--- a/ppapi/c/private/ppb_flash_menu.h
+++ b/ppapi/c/private/ppb_flash_menu.h
@@ -10,7 +10,8 @@
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_resource.h"
-#define PPB_FLASH_MENU_INTERFACE "PPB_Flash_Menu;0.2"
+#define PPB_FLASH_MENU_INTERFACE_0_2 "PPB_Flash_Menu;0.2"
+#define PPB_FLASH_MENU_INTERFACE PPB_FLASH_MENU_INTERFACE_0_2
struct PP_CompletionCallback;
@@ -37,7 +38,7 @@ struct PP_Flash_Menu {
struct PP_Flash_MenuItem* items;
};
-struct PPB_Flash_Menu {
+struct PPB_Flash_Menu_0_2 {
PP_Resource (*Create)(PP_Instance instance_id,
const struct PP_Flash_Menu* menu_data);
PP_Bool (*IsFlashMenu)(PP_Resource resource_id);
@@ -52,4 +53,6 @@ struct PPB_Flash_Menu {
struct PP_CompletionCallback callback);
};
+typedef struct PPB_Flash_Menu_0_2 PPB_Flash_Menu;
+
#endif // PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
« no previous file with comments | « ppapi/c/private/ppb_flash_fullscreen.h ('k') | ppapi/c/private/ppb_flash_net_connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698