OLD | NEW |
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 19 matching lines...) Expand all Loading... |
30 // Also this needs to be created on the UI thread on Linux. Fix this. | 30 // Also this needs to be created on the UI thread on Linux. Fix this. |
31 net::ProxyConfigService * proxy_config_service = | 31 net::ProxyConfigService * proxy_config_service = |
32 net::ProxyService::CreateSystemProxyConfigService( | 32 net::ProxyService::CreateSystemProxyConfigService( |
33 g_service_process->io_thread()->message_loop(), | 33 g_service_process->io_thread()->message_loop(), |
34 g_service_process->file_thread()->message_loop()); | 34 g_service_process->file_thread()->message_loop()); |
35 proxy_service_ = | 35 proxy_service_ = |
36 net::ProxyService::Create( | 36 net::ProxyService::Create( |
37 proxy_config_service, false, 0u, this, NULL, NULL); | 37 proxy_config_service, false, 0u, this, NULL, NULL); |
38 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_); | 38 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_); |
39 ssl_config_service_ = new net::SSLConfigServiceDefaults; | 39 ssl_config_service_ = new net::SSLConfigServiceDefaults; |
40 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault(); | 40 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault( |
| 41 host_resolver_); |
41 http_transaction_factory_ = new net::HttpCache( | 42 http_transaction_factory_ = new net::HttpCache( |
42 net::HttpNetworkLayer::CreateFactory(host_resolver_, | 43 net::HttpNetworkLayer::CreateFactory(host_resolver_, |
43 proxy_service_, | 44 proxy_service_, |
44 ssl_config_service_, | 45 ssl_config_service_, |
45 http_auth_handler_factory_, | 46 http_auth_handler_factory_, |
46 NULL /* network_delegate */, | 47 NULL /* network_delegate */, |
47 NULL /* net_log */), | 48 NULL /* net_log */), |
48 net::HttpCache::DefaultBackend::InMemory(0)); | 49 net::HttpCache::DefaultBackend::InMemory(0)); |
49 // In-memory cookie store. | 50 // In-memory cookie store. |
50 cookie_store_ = new net::CookieMonster(NULL, NULL); | 51 cookie_store_ = new net::CookieMonster(NULL, NULL); |
51 accept_language_ = "en-us,fr"; | 52 accept_language_ = "en-us,fr"; |
52 accept_charset_ = "iso-8859-1,*,utf-8"; | 53 accept_charset_ = "iso-8859-1,*,utf-8"; |
53 } | 54 } |
54 | 55 |
55 ServiceURLRequestContext::~ServiceURLRequestContext() { | 56 ServiceURLRequestContext::~ServiceURLRequestContext() { |
56 delete ftp_transaction_factory_; | 57 delete ftp_transaction_factory_; |
57 delete http_transaction_factory_; | 58 delete http_transaction_factory_; |
58 delete http_auth_handler_factory_; | 59 delete http_auth_handler_factory_; |
59 } | 60 } |
OLD | NEW |