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

Unified Diff: ppapi/cpp/file_ref.h

Issue 7307037: C++ File IO documentation. (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/file_io.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/file_ref.h
===================================================================
--- ppapi/cpp/file_ref.h (revision 96002)
+++ ppapi/cpp/file_ref.h (working copy)
@@ -30,7 +30,7 @@
/// A constructor used to create a <code>FileRef</code> and associate it with
/// the provided <code>Instance</code>.
///
- /// @param[in] instance An <code>Instance</code>.
+ /// @param[in] resource An <code>Instance</code>.
explicit FileRef(PP_Resource resource);
/// A special structure used by the constructor that does not increment the
@@ -92,7 +92,7 @@
/// <strong>Note:</strong> Use MakeDirectoryIncludingAncestors() to create
/// parent directories.
///
- /// @param[in] callback A <code>CompletionCallback</code> to be called upon
+ /// @param[in] cc A <code>CompletionCallback</code> to be called upon
/// completion of MakeDirectory().
///
/// @return An int32_t containing an error code from <code>pp_errors.h</code>.
@@ -103,7 +103,7 @@
/// system as well as any parent directories. It is not valid to make a
/// directory in the external file system.
///
- /// @param[in] callback A <code>CompletionCallback</code> to be called upon
+ /// @param[in] cc A <code>CompletionCallback</code> to be called upon
/// completion of MakeDirectoryIncludingAncestors().
///
/// @return An int32_t containing an error code from <code>pp_errors.h</code>.
@@ -115,7 +115,7 @@
///
/// @param[in] last_access_time The last time the file was accessed.
/// @param[in] last_modified_time The last time the file was modified.
- /// @param[in] callback A <code>CompletionCallback</code> to be called upon
+ /// @param[in] cc A <code>CompletionCallback</code> to be called upon
/// completion of Touch().
///
/// @return An int32_t containing an error code from <code>pp_errors.h</code>.
@@ -128,7 +128,7 @@
/// file or directory that is in use. It is not valid to delete a file in
/// the external file system.
///
- /// @param[in] callback A <code>CompletionCallback</code> to be called upon
+ /// @param[in] cc A <code>CompletionCallback</code> to be called upon
/// completion of Delete().
///
/// @return An int32_t containing an error code from <code>pp_errors.h</code>.
@@ -141,7 +141,7 @@
///
/// @param[in] new_file_ref A <code>FileRef</code> corresponding to a new
/// file reference.
- /// @param[in] callback A <code>CompletionCallback</code> to be called upon
+ /// @param[in] cc A <code>CompletionCallback</code> to be called upon
/// completion of Rename().
///
/// @return An int32_t containing an error code from <code>pp_errors.h</code>.
« no previous file with comments | « ppapi/cpp/file_io.h ('k') | ppapi/cpp/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698