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

Unified Diff: net/dns/dns_transaction.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/disk_cache/net_log_parameters.cc ('k') | net/http/http_pipelined_connection_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/dns_transaction.cc
diff --git a/net/dns/dns_transaction.cc b/net/dns/dns_transaction.cc
index dd7b659e306d19cf8cd22bc0000ed419d15682b3..ba753026810c0829199909770d5bf3f9fbf721e1 100644
--- a/net/dns/dns_transaction.cc
+++ b/net/dns/dns_transaction.cc
@@ -63,6 +63,9 @@ class StartParameters : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~StartParameters() {}
+
private:
const std::string hostname_;
const uint16 qtype_;
@@ -81,6 +84,9 @@ class ResponseParameters : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~ResponseParameters() {}
+
private:
const int rcode_;
const int answer_count_;
« no previous file with comments | « net/disk_cache/net_log_parameters.cc ('k') | net/http/http_pipelined_connection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698