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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
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 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ 5 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
6 #define PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ 6 #define PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
7 7
8 #include "ppapi/c/pp_bool.h" 8 #include "ppapi/c/pp_bool.h"
9 #include "ppapi/c/pp_instance.h" 9 #include "ppapi/c/pp_instance.h"
10 #include "ppapi/c/pp_point.h" 10 #include "ppapi/c/pp_point.h"
11 #include "ppapi/c/pp_resource.h" 11 #include "ppapi/c/pp_resource.h"
12 12
13 #define PPB_FLASH_MENU_INTERFACE "PPB_Flash_Menu;0.2" 13 #define PPB_FLASH_MENU_INTERFACE_0_2 "PPB_Flash_Menu;0.2"
14 #define PPB_FLASH_MENU_INTERFACE PPB_FLASH_MENU_INTERFACE_0_2
14 15
15 struct PP_CompletionCallback; 16 struct PP_CompletionCallback;
16 17
17 typedef enum { 18 typedef enum {
18 // TODO(viettrungluu): Radio items not supported yet. Will also probably want 19 // TODO(viettrungluu): Radio items not supported yet. Will also probably want
19 // special menu items tied to clipboard access. 20 // special menu items tied to clipboard access.
20 PP_FLASH_MENUITEM_TYPE_NORMAL = 0, 21 PP_FLASH_MENUITEM_TYPE_NORMAL = 0,
21 PP_FLASH_MENUITEM_TYPE_CHECKBOX, 22 PP_FLASH_MENUITEM_TYPE_CHECKBOX,
22 PP_FLASH_MENUITEM_TYPE_SEPARATOR, 23 PP_FLASH_MENUITEM_TYPE_SEPARATOR,
23 PP_FLASH_MENUITEM_TYPE_SUBMENU 24 PP_FLASH_MENUITEM_TYPE_SUBMENU
24 } PP_Flash_MenuItem_Type; 25 } PP_Flash_MenuItem_Type;
25 26
26 struct PP_Flash_MenuItem { 27 struct PP_Flash_MenuItem {
27 PP_Flash_MenuItem_Type type; 28 PP_Flash_MenuItem_Type type;
28 char* name; 29 char* name;
29 int32_t id; 30 int32_t id;
30 PP_Bool enabled; 31 PP_Bool enabled;
31 PP_Bool checked; 32 PP_Bool checked;
32 struct PP_Flash_Menu* submenu; 33 struct PP_Flash_Menu* submenu;
33 }; 34 };
34 35
35 struct PP_Flash_Menu { 36 struct PP_Flash_Menu {
36 uint32_t count; 37 uint32_t count;
37 struct PP_Flash_MenuItem* items; 38 struct PP_Flash_MenuItem* items;
38 }; 39 };
39 40
40 struct PPB_Flash_Menu { 41 struct PPB_Flash_Menu_0_2 {
41 PP_Resource (*Create)(PP_Instance instance_id, 42 PP_Resource (*Create)(PP_Instance instance_id,
42 const struct PP_Flash_Menu* menu_data); 43 const struct PP_Flash_Menu* menu_data);
43 PP_Bool (*IsFlashMenu)(PP_Resource resource_id); 44 PP_Bool (*IsFlashMenu)(PP_Resource resource_id);
44 45
45 // Display a context menu at the given location. If the user selects an item, 46 // Display a context menu at the given location. If the user selects an item,
46 // |selected_id| will be set to its |id| and the callback called with |PP_OK|. 47 // |selected_id| will be set to its |id| and the callback called with |PP_OK|.
47 // If the user dismisses the menu without selecting an item, 48 // If the user dismisses the menu without selecting an item,
48 // |PP_ERROR_USERCANCEL| will be indicated. 49 // |PP_ERROR_USERCANCEL| will be indicated.
49 int32_t (*Show)(PP_Resource menu_id, 50 int32_t (*Show)(PP_Resource menu_id,
50 const struct PP_Point* location, 51 const struct PP_Point* location,
51 int32_t* selected_id, 52 int32_t* selected_id,
52 struct PP_CompletionCallback callback); 53 struct PP_CompletionCallback callback);
53 }; 54 };
54 55
56 typedef struct PPB_Flash_Menu_0_2 PPB_Flash_Menu;
57
55 #endif // PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ 58 #endif // PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
OLDNEW
« 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