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

Unified Diff: net/proxy/multi_threaded_proxy_resolver.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/http/http_stream_factory_impl_job.cc ('k') | net/proxy/polling_proxy_config_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/multi_threaded_proxy_resolver.cc
diff --git a/net/proxy/multi_threaded_proxy_resolver.cc b/net/proxy/multi_threaded_proxy_resolver.cc
index e971f6c3645b5916455e739eada13f7b3cc3aa34..34ca23992241c93716b6f5e726bd5fe4144a02aa 100644
--- a/net/proxy/multi_threaded_proxy_resolver.cc
+++ b/net/proxy/multi_threaded_proxy_resolver.cc
@@ -200,6 +200,9 @@ class MultiThreadedProxyResolver::SetPacScriptJob
base::Bind(&SetPacScriptJob::RequestComplete, this, rv));
}
+ protected:
+ virtual ~SetPacScriptJob() {}
+
private:
// Runs the completion callback on the origin thread.
void RequestComplete(int result_code) {
@@ -266,6 +269,9 @@ class MultiThreadedProxyResolver::GetProxyForURLJob
base::Bind(&GetProxyForURLJob::QueryComplete, this, rv));
}
+ protected:
+ virtual ~GetProxyForURLJob() {}
+
private:
// Runs the completion callback on the origin thread.
void QueryComplete(int result_code) {
« no previous file with comments | « net/http/http_stream_factory_impl_job.cc ('k') | net/proxy/polling_proxy_config_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698