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

Unified Diff: content/browser/ssl/ssl_cert_error_handler.h

Issue 667943003: Standardize usage of virtual/override/final in content/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: content/browser/ssl/ssl_cert_error_handler.h
diff --git a/content/browser/ssl/ssl_cert_error_handler.h b/content/browser/ssl/ssl_cert_error_handler.h
index 69c647093a86edee598e70a0020b2f4f1716ea10..e3c4378f16781828714159ac614c4306b2b77b75 100644
--- a/content/browser/ssl/ssl_cert_error_handler.h
+++ b/content/browser/ssl/ssl_cert_error_handler.h
@@ -27,7 +27,7 @@ class SSLCertErrorHandler : public SSLErrorHandler {
const net::SSLInfo& ssl_info,
bool fatal);
- virtual SSLCertErrorHandler* AsSSLCertErrorHandler() override;
+ SSLCertErrorHandler* AsSSLCertErrorHandler() override;
// These accessors are available on either thread
const net::SSLInfo& ssl_info() const { return ssl_info_; }
@@ -36,11 +36,11 @@ class SSLCertErrorHandler : public SSLErrorHandler {
protected:
// SSLErrorHandler methods
- virtual void OnDispatchFailed() override;
- virtual void OnDispatched() override;
+ void OnDispatchFailed() override;
+ void OnDispatched() override;
private:
- virtual ~SSLCertErrorHandler();
+ ~SSLCertErrorHandler() override;
// These read-only members may be accessed on any thread.
const net::SSLInfo ssl_info_;
« no previous file with comments | « content/browser/speech/speech_recognizer_impl_unittest.cc ('k') | content/browser/startup_task_runner_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698