From 61b84d5d212129231137839524448b6205f7e097 Mon Sep 17 00:00:00 2001 From: "eroman@chromium.org" Date: Fri, 9 Jul 2010 03:32:00 +0000 Subject: Add the capability to run multiple proxy PAC scripts in parallel. Refactors SingleThreadedProxyResolver into MultiThreadedProxyResolver. New threads are created lazily on demand, up to a fixed maximum. Note that this CL does NOT change the policy in Chrome -- it will continue to use a single thread for proxy resolving, but using the new code to do so. BUG=11079 Review URL: http://codereview.chromium.org/2822043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51924 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/proxy_service.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'net/proxy/proxy_service.h') diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h index 22435e4..5c981f8 100644 --- a/net/proxy/proxy_service.h +++ b/net/proxy/proxy_service.h @@ -181,10 +181,6 @@ class ProxyService : public base::RefCountedThreadSafe, ~ProxyService(); - // Creates a proxy resolver appropriate for this platform that doesn't rely - // on V8. - static ProxyResolver* CreateNonV8ProxyResolver(); - // Identifies the proxy configuration. ProxyConfig::ID config_id() const { return config_.id(); } -- cgit v1.1