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

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: 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
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..4c7b06b14ea64d8f35c608e5825e66b30683b022 100644
--- a/net/base/x509_certificate_net_log_param.h
+++ b/net/base/x509_certificate_net_log_param.h
@@ -22,11 +22,12 @@ class X509Certificate;
class X509CertificateNetLogParam : public NetLog::EventParameters {
public:
explicit X509CertificateNetLogParam(X509Certificate* certificate);
- virtual ~X509CertificateNetLogParam();
virtual base::Value* ToValue() const OVERRIDE;
private:
+ virtual ~X509CertificateNetLogParam();
+
std::vector<std::string> encoded_chain_;
};

Powered by Google App Engine
This is Rietveld 408576698