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

Unified Diff: ppapi/api/ppp_instance.idl

Issue 8951014: Change the DidChangeView update to take a new ViewChanged resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New patch Created 9 years 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
Index: ppapi/api/ppp_instance.idl
diff --git a/ppapi/api/ppp_instance.idl b/ppapi/api/ppp_instance.idl
index 0ee4c74ab489029301e66e0056e28f7e5b383148..3a5cfa8d8f362b71396735268234bb24be9f8306 100644
--- a/ppapi/api/ppp_instance.idl
+++ b/ppapi/api/ppp_instance.idl
@@ -9,7 +9,8 @@
*/
label Chrome {
- M14 = 1.0
+ M14 = 1.0,
+ M17 = 1.1
};
/**
@@ -110,6 +111,8 @@ interface PPP_Instance {
[in] PP_Instance instance);
/**
+ * Deprecated in 1.1 in favor of the version that takes a Resource.
+ *
* DidChangeView() is called when the position, the size, of the clip
* rectangle of the element in the browser that corresponds to this
* instance has changed.
@@ -157,6 +160,19 @@ interface PPP_Instance {
[in] PP_Rect clip);
/**
+ * <code>DidChangeView() is called when the position, size, or other view
+ * attributes of the instance has changed.
+ */
+ [version=1.1]
+ void DidChangeView(
+ /* A PP_Instance identifying the instance whose view changed. */
+ [in] PP_Instance instance,
+ /**
+ * A handle to a <code>PPB_View</code> resource identifying the new view.
+ */
+ [in] PP_Resource view_resource);
+
+ /**
* DidChangeFocus() is called when an instance has gained or lost focus.
* Having focus means that keyboard events will be sent to the instance.
* An instance's default condition is that it will not have focus.
@@ -218,7 +234,7 @@ interface PPP_Instance {
#inline c
-typedef struct PPP_Instance PPP_Instance_1_0;
+typedef struct PPP_Instance PPP_Instance_1_1;
#endinl

Powered by Google App Engine
This is Rietveld 408576698