diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 15:01:23 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 15:01:23 +0000 |
commit | 0a8c0230bb0722cb85befefb3ee13624f74ae723 (patch) | |
tree | e7c9ec615cf47deb47faaf27615757766b8490c1 /ppapi/cpp/var.h | |
parent | 44f4f3120bfb6334b491da1876f3bc798104546a (diff) | |
download | chromium_src-0a8c0230bb0722cb85befefb3ee13624f74ae723.zip chromium_src-0a8c0230bb0722cb85befefb3ee13624f74ae723.tar.gz chromium_src-0a8c0230bb0722cb85befefb3ee13624f74ae723.tar.bz2 |
Changing all True to true and all False to false as per dmichael.
Review URL: http://codereview.chromium.org/7713018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97860 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/var.h')
-rw-r--r-- | ppapi/cpp/var.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ppapi/cpp/var.h b/ppapi/cpp/var.h index d23349e..01b4072 100644 --- a/ppapi/cpp/var.h +++ b/ppapi/cpp/var.h @@ -102,33 +102,33 @@ class Var { /// /// @param[in] other The <code>Var</code> to be compared to this Var. /// - /// @return True if the <code>other</code> <code>Var</code> is the same as + /// @return true if the <code>other</code> <code>Var</code> is the same as /// this <code>Var</code>, otherwise false. bool operator==(const Var& other) const; /// This function determines if this <code>Var</code> is an undefined value. /// - /// @return True if this <code>Var</code> is undefined, otherwise false. + /// @return true if this <code>Var</code> is undefined, otherwise false. bool is_undefined() const { return var_.type == PP_VARTYPE_UNDEFINED; } /// This function determines if this <code>Var</code> is a null value. /// - /// @return True if this <code>Var</code> is null, otherwise False. + /// @return true if this <code>Var</code> is null, otherwise false. bool is_null() const { return var_.type == PP_VARTYPE_NULL; } /// This function determines if this <code>Var</code> is a bool value. /// - /// @return True if this <code>Var</code> is a bool, otherwise False. + /// @return true if this <code>Var</code> is a bool, otherwise false. bool is_bool() const { return var_.type == PP_VARTYPE_BOOL; } /// This function determines if this <code>Var</code> is a string value. /// - /// @return True if this <code>Var</code> is a string, otherwise False. + /// @return true if this <code>Var</code> is a string, otherwise false. bool is_string() const { return var_.type == PP_VARTYPE_STRING; } /// This function determines if this <code>Var</code> is an object. /// - /// @return True if this <code>Var</code> is an object, otherwise False. + /// @return true if this <code>Var</code> is an object, otherwise false. bool is_object() const { return var_.type == PP_VARTYPE_OBJECT; } /// This function determines if this <code>Var</code> is an integer value. @@ -138,7 +138,7 @@ class Var { /// optimization inside the runtime). So most of the time, you will want /// to check is_number(). /// - /// @return True if this <code>Var</code> is an integer, otherwise False. + /// @return true if this <code>Var</code> is an integer, otherwise false. bool is_int() const { return var_.type == PP_VARTYPE_INT32; } /// This function determines if this <code>Var</code> is a double value. @@ -148,13 +148,13 @@ class Var { /// optimization inside the runtime). So most of the time, you will want to /// check is_number(). /// - /// @return True if this <code>Var</code> is a double, otherwise False. + /// @return true if this <code>Var</code> is a double, otherwise false. bool is_double() const { return var_.type == PP_VARTYPE_DOUBLE; } /// This function determines if this <code>Var</code> is a number. /// - /// @return True if this <code>Var</code> is an int32 or double number, - /// otherwise False. + /// @return true if this <code>Var</code> is an int32 or double number, + /// otherwise false. bool is_number() const { return var_.type == PP_VARTYPE_INT32 || var_.type == PP_VARTYPE_DOUBLE; |