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

Unified Diff: ppapi/c/pp_resource.h

Issue 7241024: Mostly minor changes such as adding <code></code> around elements, a little rewriting, and a few ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 6 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
Index: ppapi/c/pp_resource.h
===================================================================
--- ppapi/c/pp_resource.h (revision 90368)
+++ ppapi/c/pp_resource.h (working copy)
@@ -10,8 +10,8 @@
/**
* @file
- * This file defines the PP_Resource type which represents data associated with
- * the module.
+ * This file defines the <code>PP_Resource</code> type which represents data
+ * associated with the module.
*/
/**
@@ -29,9 +29,10 @@
* the DOM, a resource has no meaning or visibility outside of the module
* interface.
*
- * Resources are reference counted. Use AddRefResource and ReleaseResource in
- * ppb_core.h to manage the reference count of a resource. The data will be
- * automatically destroyed when the internal reference count reaches 0.
+ * Resources are reference counted. Use <code>AddRefResource()</code>
+ * and <code>ReleaseResource()</code> in <code>ppb_core.h</code> to manage the
+ * reference count of a resource. The data will be automatically destroyed when
+ * the internal reference count reaches 0.
*/
typedef int32_t PP_Resource;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Resource, 4);

Powered by Google App Engine
This is Rietveld 408576698