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

Unified Diff: content/child/webcrypto/nss/key_nss.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/nss/hmac_nss.cc ('k') | content/child/webcrypto/nss/rsa_key_nss.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/nss/key_nss.h
diff --git a/content/child/webcrypto/nss/key_nss.h b/content/child/webcrypto/nss/key_nss.h
index 39bd1961c4933d0e6b6869dc313887152b602b46..30c5546b8305dad7c28a58e2cd7a55c7e3db0c78 100644
--- a/content/child/webcrypto/nss/key_nss.h
+++ b/content/child/webcrypto/nss/key_nss.h
@@ -49,7 +49,7 @@ class SymKeyNss : public KeyNss {
static SymKeyNss* Cast(const blink::WebCryptoKey& key);
PK11SymKey* key() { return key_.get(); }
- virtual SymKeyNss* AsSymKey() OVERRIDE;
+ virtual SymKeyNss* AsSymKey() override;
const std::vector<uint8_t>& raw_key_data() const {
return serialized_key_data();
@@ -69,7 +69,7 @@ class PublicKeyNss : public KeyNss {
static PublicKeyNss* Cast(const blink::WebCryptoKey& key);
SECKEYPublicKey* key() { return key_.get(); }
- virtual PublicKeyNss* AsPublicKey() OVERRIDE;
+ virtual PublicKeyNss* AsPublicKey() override;
const std::vector<uint8_t>& spki_data() const {
return serialized_key_data();
@@ -90,7 +90,7 @@ class PrivateKeyNss : public KeyNss {
static PrivateKeyNss* Cast(const blink::WebCryptoKey& key);
SECKEYPrivateKey* key() { return key_.get(); }
- virtual PrivateKeyNss* AsPrivateKey() OVERRIDE;
+ virtual PrivateKeyNss* AsPrivateKey() override;
const std::vector<uint8_t>& pkcs8_data() const {
return serialized_key_data();
« no previous file with comments | « content/child/webcrypto/nss/hmac_nss.cc ('k') | content/child/webcrypto/nss/rsa_key_nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698