| Index: content/child/webcrypto/openssl/aes_gcm_openssl.cc
|
| diff --git a/content/child/webcrypto/openssl/aes_gcm_openssl.cc b/content/child/webcrypto/openssl/aes_gcm_openssl.cc
|
| index a3e1cd31a5591646b06a696aece119664f7a6e97..0b61713f50f084a705d2d96513ab63e4a885e0e0 100644
|
| --- a/content/child/webcrypto/openssl/aes_gcm_openssl.cc
|
| +++ b/content/child/webcrypto/openssl/aes_gcm_openssl.cc
|
| @@ -65,14 +65,14 @@ class AesGcmImplementation : public AesAlgorithm {
|
| virtual Status Encrypt(const blink::WebCryptoAlgorithm& algorithm,
|
| const blink::WebCryptoKey& key,
|
| const CryptoData& data,
|
| - std::vector<uint8_t>* buffer) const OVERRIDE {
|
| + std::vector<uint8_t>* buffer) const override {
|
| return AesGcmEncryptDecrypt(ENCRYPT, algorithm, key, data, buffer);
|
| }
|
|
|
| virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
|
| const blink::WebCryptoKey& key,
|
| const CryptoData& data,
|
| - std::vector<uint8_t>* buffer) const OVERRIDE {
|
| + std::vector<uint8_t>* buffer) const override {
|
| return AesGcmEncryptDecrypt(DECRYPT, algorithm, key, data, buffer);
|
| }
|
| };
|
|
|