diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-10 20:44:47 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-10 20:44:47 +0000 |
commit | 8e69495160c6548aca20903b10b5c44f76958c21 (patch) | |
tree | 261754db774bbe6328f32005b518141e924ec75d /net/proxy/proxy_service.h | |
parent | d6dc5993ec32e9e79b539a1784daeddef54e0968 (diff) | |
download | chromium_src-8e69495160c6548aca20903b10b5c44f76958c21.zip chromium_src-8e69495160c6548aca20903b10b5c44f76958c21.tar.gz chromium_src-8e69495160c6548aca20903b10b5c44f76958c21.tar.bz2 |
Change the default number of proxy resolver threads used for evaluating PAC scripts from 1 to 4.
Also adds a command line flag to override the default: --num-pac-threads=X
BUG=11079
Review URL: http://codereview.chromium.org/2893005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52046 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_service.h')
-rw-r--r-- | net/proxy/proxy_service.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h index 5c981f8..a702b38 100644 --- a/net/proxy/proxy_service.h +++ b/net/proxy/proxy_service.h @@ -137,6 +137,22 @@ class ProxyService : public base::RefCountedThreadSafe<ProxyService>, // the proxy settings change. We take ownership of |proxy_config_service|. // Iff |use_v8_resolver| is true, then the V8 implementation is // used. + // + // |num_pac_threads| specifies the maximum number of threads to use for + // executing PAC scripts. Threads are created lazily on demand. + // If |0| is specified, then a default number of threads will be selected. + // + // Having more threads avoids stalling proxy resolve requests when the + // PAC script takes a while to run. This is particularly a problem when PAC + // scripts do synchronous DNS resolutions, since that can take on the order + // of seconds. + // + // However, the disadvantages of using more than 1 thread are: + // (a) can cause compatibility issues for scripts that rely on side effects + // between runs (such scripts should not be common though). + // (b) increases the memory used by proxy resolving, as each thread will + // duplicate its own script context. + // |url_request_context| is only used when use_v8_resolver is true: // it specifies the URL request context that will be used if a PAC // script needs to be fetched. @@ -150,6 +166,7 @@ class ProxyService : public base::RefCountedThreadSafe<ProxyService>, static ProxyService* Create( ProxyConfigService* proxy_config_service, bool use_v8_resolver, + size_t num_pac_threads, URLRequestContext* url_request_context, NetLog* net_log, MessageLoop* io_loop); |