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

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

Issue 10824386: Add SetScale to PPB_WidgetDev, use scale for painting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/api/dev/ppb_widget_dev.idl ('k') | ppapi/cpp/dev/widget_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_widget_dev.h
diff --git a/ppapi/c/dev/ppb_widget_dev.h b/ppapi/c/dev/ppb_widget_dev.h
index 3c7293434174261694b056f7906e805847cf1a52..7fec37869ccbdf5b67d9d0e32aa35dc7ec18bd92 100644
--- a/ppapi/c/dev/ppb_widget_dev.h
+++ b/ppapi/c/dev/ppb_widget_dev.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From dev/ppb_widget_dev.idl modified Wed Oct 5 14:06:02 2011. */
+/* From dev/ppb_widget_dev.idl modified Mon Aug 20 10:21:06 2012. */
#ifndef PPAPI_C_DEV_PPB_WIDGET_DEV_H_
#define PPAPI_C_DEV_PPB_WIDGET_DEV_H_
@@ -17,7 +17,8 @@
#include "ppapi/c/pp_stdint.h"
#define PPB_WIDGET_DEV_INTERFACE_0_3 "PPB_Widget(Dev);0.3"
-#define PPB_WIDGET_DEV_INTERFACE PPB_WIDGET_DEV_INTERFACE_0_3
+#define PPB_WIDGET_DEV_INTERFACE_0_4 "PPB_Widget(Dev);0.4"
+#define PPB_WIDGET_DEV_INTERFACE PPB_WIDGET_DEV_INTERFACE_0_4
/**
* @file
@@ -32,7 +33,7 @@
/**
* The interface for reusing browser widgets.
*/
-struct PPB_Widget_Dev_0_3 {
+struct PPB_Widget_Dev_0_4 {
/**
* Returns PP_TRUE if the given resource is a Widget. Returns PP_FALSE if the
* resource is invalid or some type other than an Widget.
@@ -58,9 +59,23 @@ struct PPB_Widget_Dev_0_3 {
* Set the location of the widget.
*/
void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
+ /**
+ * Set scale used during paint operations.
+ */
+ void (*SetScale)(PP_Resource widget, float scale);
};
-typedef struct PPB_Widget_Dev_0_3 PPB_Widget_Dev;
+typedef struct PPB_Widget_Dev_0_4 PPB_Widget_Dev;
+
+struct PPB_Widget_Dev_0_3 {
+ PP_Bool (*IsWidget)(PP_Resource resource);
+ PP_Bool (*Paint)(PP_Resource widget,
+ const struct PP_Rect* rect,
+ PP_Resource image);
+ PP_Bool (*HandleEvent)(PP_Resource widget, PP_Resource input_event);
+ PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location);
+ void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
+};
/**
* @}
*/
« no previous file with comments | « ppapi/api/dev/ppb_widget_dev.idl ('k') | ppapi/cpp/dev/widget_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698