Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: content/child/webcrypto/openssl/key_openssl.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/webcrypto/openssl/hmac_openssl.cc ('k') | content/child/webcrypto/openssl/rsa_key_openssl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/openssl/key_openssl.h
diff --git a/content/child/webcrypto/openssl/key_openssl.h b/content/child/webcrypto/openssl/key_openssl.h
index e25eae4b80a707a714393cd8cbc4b1e0d941f817..9d9f61ebd974543f077c56254a9a7a6bc600b4be 100644
--- a/content/child/webcrypto/openssl/key_openssl.h
+++ b/content/child/webcrypto/openssl/key_openssl.h
@@ -48,7 +48,7 @@ class SymKeyOpenSsl : public KeyOpenSsl {
static SymKeyOpenSsl* Cast(const blink::WebCryptoKey& key);
- virtual SymKeyOpenSsl* AsSymKey() OVERRIDE;
+ virtual SymKeyOpenSsl* AsSymKey() override;
const std::vector<uint8_t>& raw_key_data() const {
return serialized_key_data();
@@ -66,7 +66,7 @@ class AsymKeyOpenSsl : public KeyOpenSsl {
static AsymKeyOpenSsl* Cast(const blink::WebCryptoKey& key);
- virtual AsymKeyOpenSsl* AsAsymKey() OVERRIDE;
+ virtual AsymKeyOpenSsl* AsAsymKey() override;
EVP_PKEY* key() { return key_.get(); }
« no previous file with comments | « content/child/webcrypto/openssl/hmac_openssl.cc ('k') | content/child/webcrypto/openssl/rsa_key_openssl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698