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_ |