| Index: content/child/webcrypto/nss/aes_kw_nss.cc
|
| diff --git a/content/child/webcrypto/nss/aes_kw_nss.cc b/content/child/webcrypto/nss/aes_kw_nss.cc
|
| index cf2fe12d8dca88fa0e3fc95861d4e24c1d259985..1ae8157cfb7f2d3127c622ed395ad2da8d9b9d94 100644
|
| --- a/content/child/webcrypto/nss/aes_kw_nss.cc
|
| +++ b/content/child/webcrypto/nss/aes_kw_nss.cc
|
| @@ -138,7 +138,7 @@ class AesKwCryptoAlgorithmNss : public AesAlgorithm {
|
| virtual Status Encrypt(const blink::WebCryptoAlgorithm& algorithm,
|
| const blink::WebCryptoKey& wrapping_key,
|
| const CryptoData& data,
|
| - std::vector<uint8_t>* buffer) const OVERRIDE {
|
| + std::vector<uint8_t>* buffer) const override {
|
| if (data.byte_length() < 16)
|
| return Status::ErrorDataTooSmall();
|
| if (data.byte_length() % 8)
|
| @@ -165,7 +165,7 @@ class AesKwCryptoAlgorithmNss : public AesAlgorithm {
|
| virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
|
| const blink::WebCryptoKey& wrapping_key,
|
| const CryptoData& data,
|
| - std::vector<uint8_t>* buffer) const OVERRIDE {
|
| + std::vector<uint8_t>* buffer) const override {
|
| if (data.byte_length() < 24)
|
| return Status::ErrorDataTooSmall();
|
| if (data.byte_length() % 8)
|
|
|