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

Unified Diff: chrome/browser/ssl/chrome_ssl_host_state_delegate.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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
Index: chrome/browser/ssl/chrome_ssl_host_state_delegate.h
diff --git a/chrome/browser/ssl/chrome_ssl_host_state_delegate.h b/chrome/browser/ssl/chrome_ssl_host_state_delegate.h
index 4ac81efb43eb853f124470e41219be5b25f7ffa6..e4e6480db2f79a503247ecb95c448791b4b6fcf6 100644
--- a/chrome/browser/ssl/chrome_ssl_host_state_delegate.h
+++ b/chrome/browser/ssl/chrome_ssl_host_state_delegate.h
@@ -24,21 +24,20 @@ class DictionaryValue;
class ChromeSSLHostStateDelegate : public content::SSLHostStateDelegate {
public:
explicit ChromeSSLHostStateDelegate(Profile* profile);
- virtual ~ChromeSSLHostStateDelegate();
+ ~ChromeSSLHostStateDelegate() override;
// SSLHostStateDelegate:
- virtual void AllowCert(const std::string& host,
- const net::X509Certificate& cert,
- net::CertStatus error) override;
- virtual void Clear() override;
- virtual CertJudgment QueryPolicy(const std::string& host,
- const net::X509Certificate& cert,
- net::CertStatus error,
- bool* expired_previous_decision) override;
- virtual void HostRanInsecureContent(const std::string& host,
- int pid) override;
- virtual bool DidHostRunInsecureContent(const std::string& host,
- int pid) const override;
+ void AllowCert(const std::string& host,
+ const net::X509Certificate& cert,
+ net::CertStatus error) override;
+ void Clear() override;
+ CertJudgment QueryPolicy(const std::string& host,
+ const net::X509Certificate& cert,
+ net::CertStatus error,
+ bool* expired_previous_decision) override;
+ void HostRanInsecureContent(const std::string& host, int pid) override;
+ bool DidHostRunInsecureContent(const std::string& host,
+ int pid) const override;
// Revokes all SSL certificate error allow exceptions made by the user for
// |host| in the given Profile.

Powered by Google App Engine
This is Rietveld 408576698