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

Unified Diff: ppapi/cpp/core.h

Issue 7701004: Fixed spelling errors and changed all references to PP_Resource to be the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/cpp/audio.h ('k') | ppapi/cpp/file_system.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/core.h
===================================================================
--- ppapi/cpp/core.h (revision 98665)
+++ ppapi/cpp/core.h (working copy)
@@ -26,7 +26,8 @@
/// AddRefResource() increments the reference count for the provided
/// <code>resource</code>.
///
- /// @param[in] resource A <code>PP_Resource</code> containing the resource.
+ /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+ /// resource.
void AddRefResource(PP_Resource resource) {
interface_->AddRefResource(resource);
}
@@ -35,7 +36,8 @@
/// <code>resource</code>. The resource will be deallocated if the
/// reference count reaches zero.
///
- /// @param[in] resource A <code>PP_Resource</code> containing the resource.
+ /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+ /// resource.
void ReleaseResource(PP_Resource resource) {
interface_->ReleaseResource(resource);
}
« no previous file with comments | « ppapi/cpp/audio.h ('k') | ppapi/cpp/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698