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

Unified Diff: net/url_request/https_prober.h

Issue 2869024: Add virtual to some base classes that have virtual methods... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « net/base/transport_security_state.h ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/https_prober.h
===================================================================
--- net/url_request/https_prober.h (revision 50795)
+++ net/url_request/https_prober.h (working copy)
@@ -23,6 +23,8 @@
class HTTPSProberDelegate {
public:
virtual void ProbeComplete(bool result) = 0;
+ protected:
+ virtual ~HTTPSProberDelegate() {}
};
// HTTPSProber is a singleton object that manages HTTPS probes. A HTTPS probe
@@ -30,7 +32,7 @@
// transparently upgrading from HTTP to HTTPS (for example, for SPDY).
class HTTPSProber : public URLRequest::Delegate {
public:
- HTTPSProber() { }
+ HTTPSProber() {}
// HaveProbed returns true if the given host is known to have been probed
// since the browser was last started.
« no previous file with comments | « net/base/transport_security_state.h ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698