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

Unified Diff: net/cert/nss_cert_database_chromeos.h

Issue 867793002: Update {virtual,override,final} to follow C++11 style in net, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | net/cert/nss_cert_database_chromeos_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/nss_cert_database_chromeos.h
diff --git a/net/cert/nss_cert_database_chromeos.h b/net/cert/nss_cert_database_chromeos.h
index 171ce28a02d38a94ae53c509a0dc19607b62a269..930f9f23e282d64db6b562a122a449255ea252b7 100644
--- a/net/cert/nss_cert_database_chromeos.h
+++ b/net/cert/nss_cert_database_chromeos.h
@@ -18,19 +18,17 @@ class NET_EXPORT NSSCertDatabaseChromeOS : public NSSCertDatabase {
public:
NSSCertDatabaseChromeOS(crypto::ScopedPK11Slot public_slot,
crypto::ScopedPK11Slot private_slot);
- virtual ~NSSCertDatabaseChromeOS();
+ ~NSSCertDatabaseChromeOS() override;
// |system_slot| is the system TPM slot, which is only enabled for certain
// users.
void SetSystemSlot(crypto::ScopedPK11Slot system_slot);
// NSSCertDatabase implementation.
- virtual void ListCertsSync(CertificateList* certs) override;
- virtual void ListCerts(const NSSCertDatabase::ListCertsCallback& callback)
- override;
- virtual void ListModules(CryptoModuleList* modules, bool need_rw) const
- override;
- virtual crypto::ScopedPK11Slot GetSystemSlot() const override;
+ void ListCertsSync(CertificateList* certs) override;
+ void ListCerts(const NSSCertDatabase::ListCertsCallback& callback) override;
+ void ListModules(CryptoModuleList* modules, bool need_rw) const override;
+ crypto::ScopedPK11Slot GetSystemSlot() const override;
// TODO(mattm): handle trust setting, deletion, etc correctly when certs exist
// in multiple slots.
« no previous file with comments | « no previous file | net/cert/nss_cert_database_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698