summaryrefslogtreecommitdiffstats
path: root/ppapi/api/pp_instance.idl
diff options
context:
space:
mode:
authornoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-16 23:53:22 +0000
committernoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-16 23:53:22 +0000
commit745b0d43a1f129f008ec1cdf50cb7afedeba1f02 (patch)
treebc84c5f95a643f85ce5d70967e1075a577dc999f /ppapi/api/pp_instance.idl
parent63e26829823d96127ad24eabbca69e4d6008d7aa (diff)
downloadchromium_src-745b0d43a1f129f008ec1cdf50cb7afedeba1f02.zip
chromium_src-745b0d43a1f129f008ec1cdf50cb7afedeba1f02.tar.gz
chromium_src-745b0d43a1f129f008ec1cdf50cb7afedeba1f02.tar.bz2
Update the IDL
Final update of the IDL so that we can switch to using generated code for ppapi/c/ and ppapi/c/trusted. BUG= http://code.google.com/p/chromium/issues/detail?id=74634 TEST= tryserver TBR= dmichael@chromium.org Review URL: http://codereview.chromium.org/7390023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92805 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/pp_instance.idl')
-rw-r--r--ppapi/api/pp_instance.idl13
1 files changed, 8 insertions, 5 deletions
diff --git a/ppapi/api/pp_instance.idl b/ppapi/api/pp_instance.idl
index 5e861ce..9fa28ac 100644
--- a/ppapi/api/pp_instance.idl
+++ b/ppapi/api/pp_instance.idl
@@ -3,16 +3,19 @@
* found in the LICENSE file.
*/
-/* This file defines the PP_Instance type which uniquely identifies one module
+/**
+ * This file defines the PP_Instance type which uniquely identifies one module
* instance.
*/
-/* The PP_Instance value uniquely identifies one instance of a module
- * (.nexe/PP_Module). There will be one module instance for every
+/**
+ * The <code>PP_Instance</code> value uniquely identifies one instance of a
+ * module (.nexe/PP_Module). There will be one module instance for every
* \<embed> tag on a page.
*
* This identifier is an opaque handle assigned by the browser to the module.
* It is guaranteed never to be 0, so a module can initialize it to 0 to
- * indicate a NULL handle.
+ * indicate a "NULL handle."
*/
-typedef int32_t PP_Instance;
+[assert_size(4)] typedef int32_t PP_Instance;
+