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

Unified Diff: ppapi/c/pp_instance.h

Issue 6312098: Updating documentation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/c/pp_errors.h ('k') | ppapi/c/pp_module.h » ('j') | ppapi/c/pp_module.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_instance.h
===================================================================
--- ppapi/c/pp_instance.h (revision 73518)
+++ ppapi/c/pp_instance.h (working copy)
@@ -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,12 @@
* @{
*/
-/** 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 type uniquely identifies one module instance. There will
dmichael(do not use this one) 2011/02/02 23:36:51 'The PP_Instance type' -> 'A PP_Instance value' A
jond 2011/02/03 17:28:11 * The PP_Instance value uniquely identifies one in
+ * 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;
« no previous file with comments | « ppapi/c/pp_errors.h ('k') | ppapi/c/pp_module.h » ('j') | ppapi/c/pp_module.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698