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

Side by Side Diff: chrome/service/net/service_url_request_context.cc

Issue 2893005: Change the default number of proxy resolver threads used for evaluating PAC s... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc comments Created 10 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/service/net/service_url_request_context.h" 5 #include "chrome/service/net/service_url_request_context.h"
6 6
7 #include "chrome/service/service_process.h" 7 #include "chrome/service/service_process.h"
8 #include "net/base/cookie_monster.h" 8 #include "net/base/cookie_monster.h"
9 #include "net/base/cookie_policy.h" 9 #include "net/base/cookie_policy.h"
10 #include "net/base/host_resolver.h" 10 #include "net/base/host_resolver.h"
(...skipping 13 matching lines...) Expand all
24 host_resolver_ = net::CreateSystemHostResolver(); 24 host_resolver_ = net::CreateSystemHostResolver();
25 DCHECK(g_service_process); 25 DCHECK(g_service_process);
26 // TODO(sanjeevr): Change CreateSystemProxyConfigService to accept a 26 // TODO(sanjeevr): Change CreateSystemProxyConfigService to accept a
27 // MessageLoopProxy* instead of MessageLoop*. 27 // MessageLoopProxy* instead of MessageLoop*.
28 // Also this needs to be created on the UI thread on Linux. Fix this. 28 // Also this needs to be created on the UI thread on Linux. Fix this.
29 net::ProxyConfigService * proxy_config_service = 29 net::ProxyConfigService * proxy_config_service =
30 net::ProxyService::CreateSystemProxyConfigService( 30 net::ProxyService::CreateSystemProxyConfigService(
31 g_service_process->io_thread()->message_loop(), 31 g_service_process->io_thread()->message_loop(),
32 g_service_process->file_thread()->message_loop()); 32 g_service_process->file_thread()->message_loop());
33 proxy_service_ = 33 proxy_service_ =
34 net::ProxyService::Create(proxy_config_service, false, this, NULL, NULL); 34 net::ProxyService::Create(
35 proxy_config_service, false, 0u, this, NULL, NULL);
35 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_); 36 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_);
36 ssl_config_service_ = new net::SSLConfigServiceDefaults; 37 ssl_config_service_ = new net::SSLConfigServiceDefaults;
37 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault(); 38 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault();
38 http_transaction_factory_ = new net::HttpCache( 39 http_transaction_factory_ = new net::HttpCache(
39 net::HttpNetworkLayer::CreateFactory(host_resolver_, 40 net::HttpNetworkLayer::CreateFactory(host_resolver_,
40 proxy_service_, 41 proxy_service_,
41 ssl_config_service_, 42 ssl_config_service_,
42 http_auth_handler_factory_, 43 http_auth_handler_factory_,
43 NULL /* network_delegate */, 44 NULL /* network_delegate */,
44 NULL /* net_log */), 45 NULL /* net_log */),
45 net::HttpCache::DefaultBackend::InMemory(0)); 46 net::HttpCache::DefaultBackend::InMemory(0));
46 // In-memory cookie store. 47 // In-memory cookie store.
47 cookie_store_ = new net::CookieMonster(NULL, NULL); 48 cookie_store_ = new net::CookieMonster(NULL, NULL);
48 accept_language_ = "en-us,fr"; 49 accept_language_ = "en-us,fr";
49 accept_charset_ = "iso-8859-1,*,utf-8"; 50 accept_charset_ = "iso-8859-1,*,utf-8";
50 } 51 }
51 52
52 ServiceURLRequestContext::~ServiceURLRequestContext() { 53 ServiceURLRequestContext::~ServiceURLRequestContext() {
53 delete ftp_transaction_factory_; 54 delete ftp_transaction_factory_;
54 delete http_transaction_factory_; 55 delete http_transaction_factory_;
55 delete http_auth_handler_factory_; 56 delete http_auth_handler_factory_;
56 } 57 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698