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

Side by Side Diff: ppapi/c/dev/ppp_zoom_dev.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/dev/ppp_widget_dev.h ('k') | ppapi/c/pp_completion_callback.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 5
6 /* From dev/ppp_zoom_dev.idl modified Fri Aug 26 15:42:06 2011. */ 6 /* From dev/ppp_zoom_dev.idl modified Wed Oct 5 14:06:02 2011. */
7 7
8 #ifndef PPAPI_C_DEV_PPP_ZOOM_DEV_H_ 8 #ifndef PPAPI_C_DEV_PPP_ZOOM_DEV_H_
9 #define PPAPI_C_DEV_PPP_ZOOM_DEV_H_ 9 #define PPAPI_C_DEV_PPP_ZOOM_DEV_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h" 12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h" 13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h" 14 #include "ppapi/c/pp_stdint.h"
15 15
16 #define PPP_ZOOM_DEV_INTERFACE_0_3 "PPP_Zoom(Dev);0.3" 16 #define PPP_ZOOM_DEV_INTERFACE_0_3 "PPP_Zoom(Dev);0.3"
17 #define PPP_ZOOM_DEV_INTERFACE PPP_ZOOM_DEV_INTERFACE_0_3 17 #define PPP_ZOOM_DEV_INTERFACE PPP_ZOOM_DEV_INTERFACE_0_3
18 18
19 /** 19 /**
20 * @file 20 * @file
21 * Implementation of the Zoom interface. 21 * Implementation of the Zoom interface.
22 */ 22 */
23 23
24 24
25 /** 25 /**
26 * @addtogroup Interfaces 26 * @addtogroup Interfaces
27 * @{ 27 * @{
28 */ 28 */
29 /** 29 /**
30 * Zoom interface should only apply to those full-page "plugin-document". 30 * Zoom interface should only apply to those full-page "plugin-document".
31 */ 31 */
32 struct PPP_Zoom_Dev { 32 struct PPP_Zoom_Dev_0_3 {
33 /** 33 /**
34 * Instruct plug-in to zoom according to the given factor and whether the zoom 34 * Instruct plug-in to zoom according to the given factor and whether the zoom
35 * only applies to text only. The scale factor is the percentage divided by 35 * only applies to text only. The scale factor is the percentage divided by
36 * 100, i.e. 150% zoom is 1.5. 36 * 100, i.e. 150% zoom is 1.5.
37 */ 37 */
38 void (*Zoom)(PP_Instance instance, double factor, PP_Bool text_only); 38 void (*Zoom)(PP_Instance instance, double factor, PP_Bool text_only);
39 }; 39 };
40
41 typedef struct PPP_Zoom_Dev_0_3 PPP_Zoom_Dev;
40 /** 42 /**
41 * @} 43 * @}
42 */ 44 */
43 45
44 #endif /* PPAPI_C_DEV_PPP_ZOOM_DEV_H_ */ 46 #endif /* PPAPI_C_DEV_PPP_ZOOM_DEV_H_ */
45 47
OLDNEW
« no previous file with comments | « ppapi/c/dev/ppp_widget_dev.h ('k') | ppapi/c/pp_completion_callback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698