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

Unified Diff: ppapi/c/dev/ppp_zoom_dev.h

Issue 4310002: Make PPAPI headers compile with C compilers (gcc on Linux & Mac and MSVS on W... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/dev/ppp_selection_dev.h ('k') | ppapi/c/pp_bool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppp_zoom_dev.h
===================================================================
--- ppapi/c/dev/ppp_zoom_dev.h (revision 65116)
+++ ppapi/c/dev/ppp_zoom_dev.h (working copy)
@@ -5,10 +5,11 @@
#ifndef PPAPI_C_DEV_PPP_ZOOM_DEV_H_
#define PPAPI_C_DEV_PPP_ZOOM_DEV_H_
+#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
// Zoom interface should only apply to those full-page "plugin-document".
-#define PPP_ZOOM_DEV_INTERFACE "PPP_Zoom(Dev);0.1"
+#define PPP_ZOOM_DEV_INTERFACE "PPP_Zoom(Dev);0.2"
struct PPP_Zoom_Dev {
// Instruct plug-in to zoom according to the given factor and whether the zoom
@@ -16,7 +17,7 @@
// 100, i.e. 150% zoom is 1.5.
void (*Zoom)(PP_Instance instance,
double factor,
- bool text_only);
+ PP_Bool text_only);
};
#endif // PPAPI_C_DEV_PPP_ZOOM_DEV_H_
« no previous file with comments | « ppapi/c/dev/ppp_selection_dev.h ('k') | ppapi/c/pp_bool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698