Chromium Code Reviews| Index: components/gcm_driver/crypto/encryption_header_parsers.h |
| diff --git a/components/gcm_driver/crypto/encryption_header_parsers.h b/components/gcm_driver/crypto/encryption_header_parsers.h |
| index 0ca82a0e68e9d914f7713f5a9cff9bdfa2b796ea..a1e8e7f73ed39f34195059dbd44e92c5ebe5785b 100644 |
| --- a/components/gcm_driver/crypto/encryption_header_parsers.h |
| +++ b/components/gcm_driver/crypto/encryption_header_parsers.h |
| @@ -38,6 +38,9 @@ bool ParseEncryptionHeader(const std::string& input, |
| bool ParseEncryptionKeyHeader(const std::string& input, |
| std::vector<EncryptionKeyHeaderValue>* result); |
| +// Decodes |input| as a base64url string into |output|. |
|
jianli
2015/08/04 00:49:30
Please also comment on the returned boolean value.
Peter Beverloo
2015/09/25 16:37:35
This doesn't apply anymore.
|
| +bool Base64DecodeUrlSafe(const std::string& input, std::string* output); |
| + |
| } // namespace gcm |
| #endif // COMPONENTS_GCM_DRIVER_CRYPTO_ENCRYPTION_HEADER_PARSERS_H_ |