| Index: content/child/webcrypto/openssl/aes_cbc_openssl.cc
|
| diff --git a/content/child/webcrypto/openssl/aes_cbc_openssl.cc b/content/child/webcrypto/openssl/aes_cbc_openssl.cc
|
| index f24361f96ed432740485e0787d3fe36d2105e330..ca917c506747e486045fdb3d1aab327868e5f489 100644
|
| --- a/content/child/webcrypto/openssl/aes_cbc_openssl.cc
|
| +++ b/content/child/webcrypto/openssl/aes_cbc_openssl.cc
|
| @@ -116,14 +116,14 @@ class AesCbcImplementation : 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 AesCbcEncryptDecrypt(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 AesCbcEncryptDecrypt(DECRYPT, algorithm, key, data, buffer);
|
| }
|
| };
|
|
|