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

Unified Diff: ppapi/c/pp_bool.h

Issue 7308010: Formatting changes (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
Index: ppapi/c/pp_bool.h
===================================================================
--- ppapi/c/pp_bool.h (revision 96394)
+++ ppapi/c/pp_bool.h (working copy)
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From pp_bool.idl modified Sat Jul 16 16:50:26 2011. */
+/* From pp_bool.idl modified Wed Aug 10 15:19:02 2011. */
#ifndef PPAPI_C_PP_BOOL_H_
#define PPAPI_C_PP_BOOL_H_
@@ -39,6 +39,10 @@
#ifdef __cplusplus
/**
* Converts a C++ "bool" type to a PP_Bool.
+ *
+ * @param[in] b A C++ "bool" type.
+ *
+ * @return A PP_Bool.
*/
inline PP_Bool PP_FromBool(bool b) {
return b ? PP_TRUE : PP_FALSE;
@@ -46,6 +50,10 @@
/**
* Converts a PP_Bool to a C++ "bool" type.
+ *
+ * @param[in] b A PP_Bool.
+ *
+ * @return A C++ "bool" type.
*/
inline bool PP_ToBool(PP_Bool b) {
return (b != PP_FALSE);

Powered by Google App Engine
This is Rietveld 408576698