| OLD | NEW |
| 1 /* Copyright (c) 2010 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 |
| 6 /* From dev/ppp_widget_dev.idl modified Fri Aug 26 17:59:12 2011. */ |
| 7 |
| 5 #ifndef PPAPI_C_DEV_PPP_WIDGET_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PPP_WIDGET_DEV_H_ |
| 6 #define PPAPI_C_DEV_PPP_WIDGET_DEV_H_ | 9 #define PPAPI_C_DEV_PPP_WIDGET_DEV_H_ |
| 7 | 10 |
| 8 #include "ppapi/c/pp_instance.h" | 11 #include "ppapi/c/pp_instance.h" |
| 12 #include "ppapi/c/pp_macros.h" |
| 13 #include "ppapi/c/pp_point.h" |
| 14 #include "ppapi/c/pp_rect.h" |
| 9 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
| 10 #include "ppapi/c/pp_rect.h" | 16 #include "ppapi/c/pp_size.h" |
| 17 #include "ppapi/c/pp_stdint.h" |
| 11 | 18 |
| 12 // Interface for the plugin to implement when using a widget. | 19 #define PPP_WIDGET_DEV_INTERFACE_0_2 "PPP_Widget(Dev);0.2" |
| 13 #define PPP_WIDGET_DEV_INTERFACE "PPP_Widget(Dev);0.2" | 20 #define PPP_WIDGET_DEV_INTERFACE PPP_WIDGET_DEV_INTERFACE_0_2 |
| 14 | 21 |
| 22 /** |
| 23 * @file |
| 24 * Implementation of the Widget interface. |
| 25 */ |
| 26 |
| 27 |
| 28 /** |
| 29 * @addtogroup Interfaces |
| 30 * @{ |
| 31 */ |
| 32 /** |
| 33 * The interface for reusing browser widgets. |
| 34 */ |
| 15 struct PPP_Widget_Dev { | 35 struct PPP_Widget_Dev { |
| 16 // Informs the instance that the given rectangle needs to be repainted. | 36 /** |
| 37 * Informs the instance that the given rectangle needs to be repainted. |
| 38 */ |
| 17 void (*Invalidate)(PP_Instance instance, | 39 void (*Invalidate)(PP_Instance instance, |
| 18 PP_Resource widget, | 40 PP_Resource widget, |
| 19 const struct PP_Rect* dirty_rect); | 41 const struct PP_Rect* dirty_rect); |
| 20 }; | 42 }; |
| 43 /** |
| 44 * @} |
| 45 */ |
| 21 | 46 |
| 22 #endif /* PPAPI_C_DEV_PPP_WIDGET_DEV_H_ */ | 47 #endif /* PPAPI_C_DEV_PPP_WIDGET_DEV_H_ */ |
| 23 | 48 |
| OLD | NEW |