summaryrefslogtreecommitdiffstats
path: root/base/base64.h
diff options
context:
space:
mode:
authorvadimt@chromium.org <vadimt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-11 00:03:33 +0000
committervadimt@chromium.org <vadimt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-11 00:03:33 +0000
commit1d4b7c7ca38a12faaf5b8878428f57b4896c1496 (patch)
tree0292489017b8ce80fab92daf4dafe2f4a54fbd3e /base/base64.h
parent9a07c2959da5398a6dd9176e1bbf31f6ab6dc89a (diff)
downloadchromium_src-1d4b7c7ca38a12faaf5b8878428f57b4896c1496.zip
chromium_src-1d4b7c7ca38a12faaf5b8878428f57b4896c1496.tar.gz
chromium_src-1d4b7c7ca38a12faaf5b8878428f57b4896c1496.tar.bz2
Revert 239759 "The comment in base64.h implies that base::Base64..."
> The comment in base64.h implies that base::Base64Encode() can return false, but > this cannot happen in practice. Fix the comment. > > The implementation of Base64Encode() attempts to check for the return value > MODP_B64_ERROR as a failure, but modp_b64_encode() cannot return this > value. Remove the check. > > Remove unneeded integer cast. > > Change the return type to void. > > BUG=323357 > TEST=base_unittests, compile all > TBR=jochen@chromium.org,miket@chromium.org,joi@chromium.org,akalin@chromium.org,sergeyu@chromium.org > > Review URL: https://codereview.chromium.org/86913002 TBR=ricea@chromium.org Review URL: https://codereview.chromium.org/101113004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239921 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base64.h')
-rw-r--r--base/base64.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/base/base64.h b/base/base64.h
index 43d8f76..cc78edc 100644
--- a/base/base64.h
+++ b/base/base64.h
@@ -12,8 +12,9 @@
namespace base {
-// Encodes the input string in base64.
-BASE_EXPORT void Base64Encode(const StringPiece& input, std::string* output);
+// Encodes the input string in base64. Returns true if successful and false
+// otherwise. The output string is only modified if successful.
+BASE_EXPORT bool Base64Encode(const StringPiece& input, std::string* output);
// Decodes the base64 input string. Returns true if successful and false
// otherwise. The output string is only modified if successful.