Chromium Code Reviews| Index: base/base64.h |
| diff --git a/base/base64.h b/base/base64.h |
| index cc78edce5c6eebdde84dd81eaab41bc0ecf526a1..bc6a39f36c4450593d0ecfc60c7ed4f5c6148b1d 100644 |
| --- a/base/base64.h |
| +++ b/base/base64.h |
| @@ -12,8 +12,7 @@ |
| namespace base { |
| -// Encodes the input string in base64. Returns true if successful and false |
| -// otherwise. The output string is only modified if successful. |
| +// Encodes the input string in base64. Returns true. |
| BASE_EXPORT bool Base64Encode(const StringPiece& input, std::string* output); |
|
brettw
2013/12/05 06:33:57
It seems like we should just fix the return value
|
| // Decodes the base64 input string. Returns true if successful and false |