Index: content/child/webcrypto/nss/aes_cbc_nss.cc |
diff --git a/content/child/webcrypto/nss/aes_cbc_nss.cc b/content/child/webcrypto/nss/aes_cbc_nss.cc |
index 03184404f5d2600971832e6fd5af7e3f7f59d932..0cfa66777d1c6c35204f23b2b0dffa7c418480a5 100644 |
--- a/content/child/webcrypto/nss/aes_cbc_nss.cc |
+++ b/content/child/webcrypto/nss/aes_cbc_nss.cc |
@@ -105,14 +105,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); |
} |
}; |