Index: base/base64.h |
diff --git a/base/base64.h b/base/base64.h |
index 43d8f76eb764cc1190612365ea8365cc41ef9edb..def9b67f5b22f1318c01c523be45ae87619d21be 100644 |
--- a/base/base64.h |
+++ b/base/base64.h |
@@ -12,11 +12,12 @@ |
namespace base { |
-// Encodes the input string in base64. |
+// Encodes the input string in base64. The encoding can be done in-place. |
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. |
+// otherwise. The output string is only modified if successful. The decoding can |
+// be done in-place. |
BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output); |
} // namespace base |