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

Unified Diff: net/base/x509_certificate_net_log_param.h

Issue 10066045: RefCounted types should not have public destructors, net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deprecated cookiestore fix Created 8 years, 8 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/net_log.cc ('k') | net/base/x509_certificate_net_log_param.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/x509_certificate_net_log_param.h
diff --git a/net/base/x509_certificate_net_log_param.h b/net/base/x509_certificate_net_log_param.h
index 97b8515fd137872df07cefc23f56841e7687e142..9e330583123f3c9da727c7942cd023d0d33af6d7 100644
--- a/net/base/x509_certificate_net_log_param.h
+++ b/net/base/x509_certificate_net_log_param.h
@@ -22,10 +22,12 @@ class X509Certificate;
class X509CertificateNetLogParam : public NetLog::EventParameters {
public:
explicit X509CertificateNetLogParam(X509Certificate* certificate);
- virtual ~X509CertificateNetLogParam();
virtual base::Value* ToValue() const OVERRIDE;
+ protected:
+ virtual ~X509CertificateNetLogParam();
+
private:
std::vector<std::string> encoded_chain_;
};
« no previous file with comments | « net/base/net_log.cc ('k') | net/base/x509_certificate_net_log_param.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698