Index: content/child/webcrypto/openssl/sha_openssl.cc |
diff --git a/content/child/webcrypto/openssl/sha_openssl.cc b/content/child/webcrypto/openssl/sha_openssl.cc |
index 7a2faa8534bef3cee07c5c5f0b51cba5231ea6b5..9e1b9044cc431fc572d0bdb314c712ab319c1f6d 100644 |
--- a/content/child/webcrypto/openssl/sha_openssl.cc |
+++ b/content/child/webcrypto/openssl/sha_openssl.cc |
@@ -113,7 +113,7 @@ class ShaImplementation : public AlgorithmImplementation { |
public: |
virtual Status Digest(const blink::WebCryptoAlgorithm& algorithm, |
const CryptoData& data, |
- std::vector<uint8_t>* buffer) const OVERRIDE { |
+ std::vector<uint8_t>* buffer) const override { |
DigestorOpenSsl digestor(algorithm.id()); |
Status error = digestor.ConsumeWithStatus(data.bytes(), data.byte_length()); |
// http://crbug.com/366427: the spec does not define any other failures for |