diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 00:59:31 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 00:59:31 +0000 |
commit | b2b420d78ea19d0121dceb1d025bf8db8626a2d4 (patch) | |
tree | c8f86cdb49ce09235e52f68d4cf77b9e3456464f /ppapi/c/pp_errors.h | |
parent | ba7fd4a9ccc5c568e1357d6a739c53411c8f8e13 (diff) | |
download | chromium_src-b2b420d78ea19d0121dceb1d025bf8db8626a2d4.zip chromium_src-b2b420d78ea19d0121dceb1d025bf8db8626a2d4.tar.gz chromium_src-b2b420d78ea19d0121dceb1d025bf8db8626a2d4.tar.bz2 |
Trivial changes to PPAPI headers
These trivial changes make the PPAPI headers more consistent.
This allows the headers to more closely match the autogenerated
ones simplifying validation before we switch over to IDL.
TEST= tryserver
BUG= http://code.google.com/p/chromium/issues/detail?id=76271
Review URL: http://codereview.chromium.org/7333003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92088 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_errors.h')
-rw-r--r-- | ppapi/c/pp_errors.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h index 4a7b3e3..055584e 100644 --- a/ppapi/c/pp_errors.h +++ b/ppapi/c/pp_errors.h @@ -16,7 +16,8 @@ * @{ */ -/** This enumeration contains enumerators of all PPAPI error codes. +/** + * This enumeration contains enumerators of all PPAPI error codes. * Errors are negative valued. */ enum { @@ -94,7 +95,8 @@ enum { /** This value indicates failure due to a time limit being exceeded. */ PP_ERROR_TIMEDOUT = -30, - /** This value indicates that the user cancelled rather than providing + /** + * This value indicates that the user cancelled rather than providing * expected input. */ PP_ERROR_USERCANCEL = -40 @@ -102,7 +104,6 @@ enum { /** * @} - * End of addtogroup Enums */ #endif /* PPAPI_C_PP_ERRORS_H_ */ |