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

Unified Diff: net/base/x509_certificate_net_log_param.cc

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/x509_certificate_net_log_param.h ('k') | net/cookies/cookie_monster.h » ('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.cc
diff --git a/net/base/x509_certificate_net_log_param.cc b/net/base/x509_certificate_net_log_param.cc
index 03e8a3cb560effcb4694720ee7ef0229873567bc..f47a519ae15bb6b97064aa9a03d2c4d5267b1b3f 100644
--- a/net/base/x509_certificate_net_log_param.cc
+++ b/net/base/x509_certificate_net_log_param.cc
@@ -14,8 +14,6 @@ X509CertificateNetLogParam::X509CertificateNetLogParam(
certificate->GetPEMEncodedChain(&encoded_chain_);
}
-X509CertificateNetLogParam::~X509CertificateNetLogParam() {}
-
base::Value* X509CertificateNetLogParam::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
ListValue* certs = new ListValue();
@@ -25,4 +23,6 @@ base::Value* X509CertificateNetLogParam::ToValue() const {
return dict;
}
+X509CertificateNetLogParam::~X509CertificateNetLogParam() {}
+
} // namespace net
« no previous file with comments | « net/base/x509_certificate_net_log_param.h ('k') | net/cookies/cookie_monster.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698