summaryrefslogtreecommitdiff
path: root/chromium/base/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/base64.h')
-rw-r--r--chromium/base/base64.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/base/base64.h b/chromium/base/base64.h
index cc78edce5c6..43d8f76eb76 100644
--- a/chromium/base/base64.h
+++ b/chromium/base/base64.h
@@ -12,9 +12,8 @@
namespace base {
-// 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);
+// Encodes the input string in base64.
+BASE_EXPORT void 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.