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

Unified Diff: net/http/http_pipelined_connection_impl.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/dns/dns_transaction.cc ('k') | net/http/http_pipelined_connection_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_pipelined_connection_impl.cc
diff --git a/net/http/http_pipelined_connection_impl.cc b/net/http/http_pipelined_connection_impl.cc
index 8e87a89aa62277394bc52f55cee98195f5c9df96..fe55598b03e665a665b2a8d32a4e16a40ad3f682 100644
--- a/net/http/http_pipelined_connection_impl.cc
+++ b/net/http/http_pipelined_connection_impl.cc
@@ -38,6 +38,9 @@ class ReceivedHeadersParameters : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~ReceivedHeadersParameters() {}
+
private:
const NetLog::Source source_;
const std::string feedback_;
@@ -55,6 +58,9 @@ class StreamClosedParameters : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~StreamClosedParameters() {}
+
private:
const NetLog::Source source_;
const bool not_reusable_;
« no previous file with comments | « net/dns/dns_transaction.cc ('k') | net/http/http_pipelined_connection_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698