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

Unified Diff: chrome/browser/chromeos/options/cert_library.h

Issue 854043002: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/options. (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 | chrome/browser/chromeos/options/network_config_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/options/cert_library.h
diff --git a/chrome/browser/chromeos/options/cert_library.h b/chrome/browser/chromeos/options/cert_library.h
index a3c898ba3db38d2fbbc63da70aa01e861b878c9b..8399dd1ee024d80caf20fefd94cd23adabb713d5 100644
--- a/chrome/browser/chromeos/options/cert_library.h
+++ b/chrome/browser/chromeos/options/cert_library.h
@@ -79,12 +79,12 @@ class CertLibrary : public CertLoader::Observer {
int GetUserCertIndexByPkcs11Id(const std::string& pkcs11_id) const;
// CertLoader::Observer
- virtual void OnCertificatesLoaded(const net::CertificateList&,
- bool initial_load) override;
+ void OnCertificatesLoaded(const net::CertificateList&,
+ bool initial_load) override;
private:
CertLibrary();
- virtual ~CertLibrary();
+ ~CertLibrary() override;
net::X509Certificate* GetCertificateAt(CertType type, int index) const;
const net::CertificateList& GetCertificateListForType(CertType type) const;
« no previous file with comments | « no previous file | chrome/browser/chromeos/options/network_config_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698