diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 22:47:09 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 22:47:09 +0000 |
commit | 590872fa7ceb87b4623207eaadf12373fc0527c4 (patch) | |
tree | dbf2b0cd64e2863ce8f0e82df7c21e87585b3b1c /ppapi/c/pp_bool.h | |
parent | ad237efd7c5fbb6a5d8e870a041e150b41257ae1 (diff) | |
download | chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.zip chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.tar.gz chromium_src-590872fa7ceb87b4623207eaadf12373fc0527c4.tar.bz2 |
Review URL: http://codereview.chromium.org/6312098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73683 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_bool.h')
-rw-r--r-- | ppapi/c/pp_bool.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/ppapi/c/pp_bool.h b/ppapi/c/pp_bool.h index dcc3923..d53fa00 100644 --- a/ppapi/c/pp_bool.h +++ b/ppapi/c/pp_bool.h @@ -9,7 +9,7 @@ /** * @file - * Defines the API ... + * This file defines the PP_Bool enumeration for use in PPAPI C headers. */ /** @@ -19,10 +19,10 @@ */ /** - * A boolean value for use in PPAPI C headers. The standard bool type is not - * available to pre-C99 compilers, and is not guaranteed to be compatible - * between C and C++, whereas the PPAPI C headers can be included from C or C++ - * code. + * The PP_Bool enum is a boolean value for use in PPAPI C headers. The + * standard bool type is not available to pre-C99 compilers, and is not + * guaranteed to be compatible between C and C++, whereas the PPAPI C + * headers can be included from C or C++ code. */ typedef enum { PP_FALSE = 0, @@ -33,9 +33,5 @@ PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Bool, 4); * @} */ - - - - #endif /* PPAPI_C_PP_BOOL_H_ */ |