diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 22:47:09 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 22:47:09 +0000 |
commit | 590872fa7ceb87b4623207eaadf12373fc0527c4 (patch) | |
tree | dbf2b0cd64e2863ce8f0e82df7c21e87585b3b1c /ppapi/c/pp_instance.h | |
parent | ad237efd7c5fbb6a5d8e870a041e150b41257ae1 (diff) | |
download | chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.zip chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.tar.gz chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.tar.bz2 |
Review URL: http://codereview.chromium.org/6312098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73683 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_instance.h')
-rw-r--r-- | ppapi/c/pp_instance.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ppapi/c/pp_instance.h b/ppapi/c/pp_instance.h index 9dcdc4b..500df2b 100644 --- a/ppapi/c/pp_instance.h +++ b/ppapi/c/pp_instance.h @@ -7,7 +7,8 @@ /** * @file - * Defines the API ... + * This file defines the PP_Instance type which uniquely identifies one module + * instance. */ #include "ppapi/c/pp_macros.h" @@ -18,12 +19,13 @@ * @{ */ -/** A PP_Instance uniquely identifies one plugin instance, which is one time - * that a page says \<embed>. There can be multiple instances of the same plugin - * type on a page that will all be in the same module. +/** + * The PP_Instance value uniquely identifies one instance of a module + * (.nexe/PP_Module). There will be one module instance for every + * \<embed> tag on a page. * - * The identifier is an opaque handle assigned by the browser to the plugin. It - * is guaranteed never to be 0, so a plugin can initialize it to 0 to + * 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." */ typedef int32_t PP_Instance; |