Index: base/base64.h |
diff --git a/base/base64.h b/base/base64.h |
index cc78edce5c6eebdde84dd81eaab41bc0ecf526a1..43d8f76eb764cc1190612365ea8365cc41ef9edb 100644 |
--- a/base/base64.h |
+++ b/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. |