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

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

Issue 7833031: Convert zoom and widget to IDL (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 3 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/ppp_zoom_dev.idl ('k') | ppapi/c/dev/ppp_zoom_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppp_widget_dev.h
===================================================================
--- ppapi/c/dev/ppp_widget_dev.h (revision 99676)
+++ ppapi/c/dev/ppp_widget_dev.h (working copy)
@@ -1,23 +1,48 @@
-/* Copyright (c) 2010 The Chromium Authors. All rights reserved.
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
+
+/* From dev/ppp_widget_dev.idl modified Fri Aug 26 17:59:12 2011. */
+
#ifndef PPAPI_C_DEV_PPP_WIDGET_DEV_H_
#define PPAPI_C_DEV_PPP_WIDGET_DEV_H_
#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_macros.h"
+#include "ppapi/c/pp_point.h"
+#include "ppapi/c/pp_rect.h"
#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/pp_rect.h"
+#include "ppapi/c/pp_size.h"
+#include "ppapi/c/pp_stdint.h"
-// Interface for the plugin to implement when using a widget.
-#define PPP_WIDGET_DEV_INTERFACE "PPP_Widget(Dev);0.2"
+#define PPP_WIDGET_DEV_INTERFACE_0_2 "PPP_Widget(Dev);0.2"
+#define PPP_WIDGET_DEV_INTERFACE PPP_WIDGET_DEV_INTERFACE_0_2
+/**
+ * @file
+ * Implementation of the Widget interface.
+ */
+
+
+/**
+ * @addtogroup Interfaces
+ * @{
+ */
+/**
+ * The interface for reusing browser widgets.
+ */
struct PPP_Widget_Dev {
- // Informs the instance that the given rectangle needs to be repainted.
+ /**
+ * Informs the instance that the given rectangle needs to be repainted.
+ */
void (*Invalidate)(PP_Instance instance,
PP_Resource widget,
const struct PP_Rect* dirty_rect);
};
+/**
+ * @}
+ */
#endif /* PPAPI_C_DEV_PPP_WIDGET_DEV_H_ */
« no previous file with comments | « ppapi/api/dev/ppp_zoom_dev.idl ('k') | ppapi/c/dev/ppp_zoom_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698