diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 14:28:06 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 14:28:06 +0000 |
commit | 048e979919ed03ce77e1f530723e15add3883ba1 (patch) | |
tree | c5fc3c03e45a670873aa8026e2650c7046b2b1fd /ppapi/c | |
parent | de4f7d2273c0605bef5d58c838cebc974a0f57bb (diff) | |
download | chromium_src-048e979919ed03ce77e1f530723e15add3883ba1.zip chromium_src-048e979919ed03ce77e1f530723e15add3883ba1.tar.gz chromium_src-048e979919ed03ce77e1f530723e15add3883ba1.tar.bz2 |
PPAPI: Fix doc for MakeDirectory when directory exists
BUG=242740
Review URL: https://chromiumcodereview.appspot.com/15755003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/ppb_file_ref.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/c/ppb_file_ref.h b/ppapi/c/ppb_file_ref.h index 951c30d..0f35e2c 100644 --- a/ppapi/c/ppb_file_ref.h +++ b/ppapi/c/ppb_file_ref.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_file_ref.idl modified Thu May 2 16:22:57 2013. */ +/* From ppb_file_ref.idl modified Wed May 22 15:08:49 2013. */ #ifndef PPAPI_C_PPB_FILE_REF_H_ #define PPAPI_C_PPB_FILE_REF_H_ @@ -122,9 +122,9 @@ struct PPB_FileRef_1_1 { * if ancestor directories are not needed. * * @return An int32_t containing an error code from <code>pp_errors.h</code>. - * Fails if the directory already exists or if ancestor directories do not - * exist and <code>make_ancestors</code> was not passed as - * <code>PP_TRUE</code>. + * Succeeds if the directory already exists. Fails if ancestor directories + * do not exist and <code>make_ancestors</code> was passed as + * <code>PP_FALSE</code>. */ int32_t (*MakeDirectory)(PP_Resource directory_ref, PP_Bool make_ancestors, |