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

Unified Diff: net/proxy/proxy_service.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/proxy/proxy_script_decider_unittest.cc ('k') | net/proxy/sync_host_resolver_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_service.cc
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index 72b45551c117679efec6704e70aca97bb8386a3b..1c9203348ae908a1bcf36862bf4fd443b85011cb 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -348,6 +348,9 @@ class ProxyConfigChangedNetLogParam : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~ProxyConfigChangedNetLogParam() {}
+
private:
const ProxyConfig old_config_;
const ProxyConfig new_config_;
@@ -374,6 +377,9 @@ class BadProxyListNetLogParam : public NetLog::EventParameters {
return dict;
}
+ protected:
+ virtual ~BadProxyListNetLogParam() {}
+
private:
std::vector<std::string> proxy_list_;
DISALLOW_COPY_AND_ASSIGN(BadProxyListNetLogParam);
« no previous file with comments | « net/proxy/proxy_script_decider_unittest.cc ('k') | net/proxy/sync_host_resolver_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698