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

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

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 4855204cb47a496d22168a7fcc0a9d48b51971ae..4ac81efb43eb853f124470e41219be5b25f7ffa6 100644
--- a/chrome/browser/ssl/chrome_ssl_host_state_delegate.h
+++ b/chrome/browser/ssl/chrome_ssl_host_state_delegate.h
@@ -29,16 +29,16 @@ class ChromeSSLHostStateDelegate : public content::SSLHostStateDelegate {
// SSLHostStateDelegate:
virtual void AllowCert(const std::string& host,
const net::X509Certificate& cert,
- net::CertStatus error) OVERRIDE;
- virtual void Clear() OVERRIDE;
+ 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;
+ bool* expired_previous_decision) override;
virtual void HostRanInsecureContent(const std::string& host,
- int pid) OVERRIDE;
+ int pid) override;
virtual bool DidHostRunInsecureContent(const std::string& host,
- int pid) const OVERRIDE;
+ 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