OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/shell/browser/shell_url_request_context_getter.h" | 5 #include "content/shell/browser/shell_url_request_context_getter.h" |
6 | 6 |
| 7 #include <memory> |
7 #include <utility> | 8 #include <utility> |
8 | 9 |
9 #include "base/command_line.h" | 10 #include "base/command_line.h" |
10 #include "base/logging.h" | 11 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/ptr_util.h" |
12 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
13 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
14 #include "base/strings/string_split.h" | 15 #include "base/strings/string_split.h" |
15 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
16 #include "base/threading/sequenced_worker_pool.h" | 17 #include "base/threading/sequenced_worker_pool.h" |
17 #include "base/threading/worker_pool.h" | 18 #include "base/threading/worker_pool.h" |
18 #include "build/build_config.h" | 19 #include "build/build_config.h" |
19 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
20 #include "content/public/browser/cookie_store_factory.h" | 21 #include "content/public/browser/cookie_store_factory.h" |
21 #include "content/public/common/content_switches.h" | 22 #include "content/public/common/content_switches.h" |
(...skipping 27 matching lines...) Expand all Loading... |
49 | 50 |
50 namespace { | 51 namespace { |
51 | 52 |
52 void InstallProtocolHandlers(net::URLRequestJobFactoryImpl* job_factory, | 53 void InstallProtocolHandlers(net::URLRequestJobFactoryImpl* job_factory, |
53 ProtocolHandlerMap* protocol_handlers) { | 54 ProtocolHandlerMap* protocol_handlers) { |
54 for (ProtocolHandlerMap::iterator it = | 55 for (ProtocolHandlerMap::iterator it = |
55 protocol_handlers->begin(); | 56 protocol_handlers->begin(); |
56 it != protocol_handlers->end(); | 57 it != protocol_handlers->end(); |
57 ++it) { | 58 ++it) { |
58 bool set_protocol = job_factory->SetProtocolHandler( | 59 bool set_protocol = job_factory->SetProtocolHandler( |
59 it->first, make_scoped_ptr(it->second.release())); | 60 it->first, base::WrapUnique(it->second.release())); |
60 DCHECK(set_protocol); | 61 DCHECK(set_protocol); |
61 } | 62 } |
62 protocol_handlers->clear(); | 63 protocol_handlers->clear(); |
63 } | 64 } |
64 | 65 |
65 } // namespace | 66 } // namespace |
66 | 67 |
67 ShellURLRequestContextGetter::ShellURLRequestContextGetter( | 68 ShellURLRequestContextGetter::ShellURLRequestContextGetter( |
68 bool ignore_certificate_errors, | 69 bool ignore_certificate_errors, |
69 const base::FilePath& base_path, | 70 const base::FilePath& base_path, |
(...skipping 15 matching lines...) Expand all Loading... |
85 | 86 |
86 // We must create the proxy config service on the UI loop on Linux because it | 87 // We must create the proxy config service on the UI loop on Linux because it |
87 // must synchronously run on the glib message loop. This will be passed to | 88 // must synchronously run on the glib message loop. This will be passed to |
88 // the URLRequestContextStorage on the IO thread in GetURLRequestContext(). | 89 // the URLRequestContextStorage on the IO thread in GetURLRequestContext(). |
89 proxy_config_service_ = GetProxyConfigService(); | 90 proxy_config_service_ = GetProxyConfigService(); |
90 } | 91 } |
91 | 92 |
92 ShellURLRequestContextGetter::~ShellURLRequestContextGetter() { | 93 ShellURLRequestContextGetter::~ShellURLRequestContextGetter() { |
93 } | 94 } |
94 | 95 |
95 scoped_ptr<net::NetworkDelegate> | 96 std::unique_ptr<net::NetworkDelegate> |
96 ShellURLRequestContextGetter::CreateNetworkDelegate() { | 97 ShellURLRequestContextGetter::CreateNetworkDelegate() { |
97 return make_scoped_ptr(new ShellNetworkDelegate); | 98 return base::WrapUnique(new ShellNetworkDelegate); |
98 } | 99 } |
99 | 100 |
100 scoped_ptr<net::ProxyConfigService> | 101 std::unique_ptr<net::ProxyConfigService> |
101 ShellURLRequestContextGetter::GetProxyConfigService() { | 102 ShellURLRequestContextGetter::GetProxyConfigService() { |
102 return net::ProxyService::CreateSystemProxyConfigService(io_task_runner_, | 103 return net::ProxyService::CreateSystemProxyConfigService(io_task_runner_, |
103 file_task_runner_); | 104 file_task_runner_); |
104 } | 105 } |
105 | 106 |
106 scoped_ptr<net::ProxyService> ShellURLRequestContextGetter::GetProxyService() { | 107 std::unique_ptr<net::ProxyService> |
| 108 ShellURLRequestContextGetter::GetProxyService() { |
107 // TODO(jam): use v8 if possible, look at chrome code. | 109 // TODO(jam): use v8 if possible, look at chrome code. |
108 return net::ProxyService::CreateUsingSystemProxyResolver( | 110 return net::ProxyService::CreateUsingSystemProxyResolver( |
109 std::move(proxy_config_service_), 0, url_request_context_->net_log()); | 111 std::move(proxy_config_service_), 0, url_request_context_->net_log()); |
110 } | 112 } |
111 | 113 |
112 net::URLRequestContext* ShellURLRequestContextGetter::GetURLRequestContext() { | 114 net::URLRequestContext* ShellURLRequestContextGetter::GetURLRequestContext() { |
113 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 115 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
114 | 116 |
115 if (!url_request_context_) { | 117 if (!url_request_context_) { |
116 const base::CommandLine& command_line = | 118 const base::CommandLine& command_line = |
117 *base::CommandLine::ForCurrentProcess(); | 119 *base::CommandLine::ForCurrentProcess(); |
118 | 120 |
119 url_request_context_.reset(new net::URLRequestContext()); | 121 url_request_context_.reset(new net::URLRequestContext()); |
120 url_request_context_->set_net_log(net_log_); | 122 url_request_context_->set_net_log(net_log_); |
121 network_delegate_ = CreateNetworkDelegate(); | 123 network_delegate_ = CreateNetworkDelegate(); |
122 url_request_context_->set_network_delegate(network_delegate_.get()); | 124 url_request_context_->set_network_delegate(network_delegate_.get()); |
123 storage_.reset( | 125 storage_.reset( |
124 new net::URLRequestContextStorage(url_request_context_.get())); | 126 new net::URLRequestContextStorage(url_request_context_.get())); |
125 storage_->set_cookie_store(CreateCookieStore(CookieStoreConfig())); | 127 storage_->set_cookie_store(CreateCookieStore(CookieStoreConfig())); |
126 storage_->set_channel_id_service(make_scoped_ptr( | 128 storage_->set_channel_id_service(base::WrapUnique( |
127 new net::ChannelIDService(new net::DefaultChannelIDStore(NULL), | 129 new net::ChannelIDService(new net::DefaultChannelIDStore(NULL), |
128 base::WorkerPool::GetTaskRunner(true)))); | 130 base::WorkerPool::GetTaskRunner(true)))); |
129 storage_->set_http_user_agent_settings(make_scoped_ptr( | 131 storage_->set_http_user_agent_settings(base::WrapUnique( |
130 new net::StaticHttpUserAgentSettings("en-us,en", GetShellUserAgent()))); | 132 new net::StaticHttpUserAgentSettings("en-us,en", GetShellUserAgent()))); |
131 | 133 |
132 scoped_ptr<net::HostResolver> host_resolver( | 134 std::unique_ptr<net::HostResolver> host_resolver( |
133 net::HostResolver::CreateDefaultResolver( | 135 net::HostResolver::CreateDefaultResolver( |
134 url_request_context_->net_log())); | 136 url_request_context_->net_log())); |
135 | 137 |
136 storage_->set_cert_verifier(net::CertVerifier::CreateDefault()); | 138 storage_->set_cert_verifier(net::CertVerifier::CreateDefault()); |
137 storage_->set_transport_security_state( | 139 storage_->set_transport_security_state( |
138 make_scoped_ptr(new net::TransportSecurityState)); | 140 base::WrapUnique(new net::TransportSecurityState)); |
139 storage_->set_proxy_service(GetProxyService()); | 141 storage_->set_proxy_service(GetProxyService()); |
140 storage_->set_ssl_config_service(new net::SSLConfigServiceDefaults); | 142 storage_->set_ssl_config_service(new net::SSLConfigServiceDefaults); |
141 storage_->set_http_auth_handler_factory( | 143 storage_->set_http_auth_handler_factory( |
142 net::HttpAuthHandlerFactory::CreateDefault(host_resolver.get())); | 144 net::HttpAuthHandlerFactory::CreateDefault(host_resolver.get())); |
143 storage_->set_http_server_properties( | 145 storage_->set_http_server_properties( |
144 make_scoped_ptr(new net::HttpServerPropertiesImpl())); | 146 base::WrapUnique(new net::HttpServerPropertiesImpl())); |
145 | 147 |
146 base::FilePath cache_path = base_path_.Append(FILE_PATH_LITERAL("Cache")); | 148 base::FilePath cache_path = base_path_.Append(FILE_PATH_LITERAL("Cache")); |
147 scoped_ptr<net::HttpCache::DefaultBackend> main_backend( | 149 std::unique_ptr<net::HttpCache::DefaultBackend> main_backend( |
148 new net::HttpCache::DefaultBackend( | 150 new net::HttpCache::DefaultBackend( |
149 net::DISK_CACHE, | 151 net::DISK_CACHE, |
150 #if defined(OS_ANDROID) | 152 #if defined(OS_ANDROID) |
151 // TODO(rdsmith): Remove when default backend for Android is | 153 // TODO(rdsmith): Remove when default backend for Android is |
152 // changed to simple cache. | 154 // changed to simple cache. |
153 net::CACHE_BACKEND_SIMPLE, | 155 net::CACHE_BACKEND_SIMPLE, |
154 #else | 156 #else |
155 net::CACHE_BACKEND_DEFAULT, | 157 net::CACHE_BACKEND_DEFAULT, |
156 #endif | 158 #endif |
157 cache_path, | 159 cache_path, 0, |
158 0, | |
159 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE))); | 160 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE))); |
160 | 161 |
161 net::HttpNetworkSession::Params network_session_params; | 162 net::HttpNetworkSession::Params network_session_params; |
162 network_session_params.cert_verifier = | 163 network_session_params.cert_verifier = |
163 url_request_context_->cert_verifier(); | 164 url_request_context_->cert_verifier(); |
164 network_session_params.transport_security_state = | 165 network_session_params.transport_security_state = |
165 url_request_context_->transport_security_state(); | 166 url_request_context_->transport_security_state(); |
166 network_session_params.channel_id_service = | 167 network_session_params.channel_id_service = |
167 url_request_context_->channel_id_service(); | 168 url_request_context_->channel_id_service(); |
168 network_session_params.proxy_service = | 169 network_session_params.proxy_service = |
(...skipping 14 matching lines...) Expand all Loading... |
183 switches::kTestingFixedHttpPort), &value); | 184 switches::kTestingFixedHttpPort), &value); |
184 network_session_params.testing_fixed_http_port = value; | 185 network_session_params.testing_fixed_http_port = value; |
185 } | 186 } |
186 if (command_line.HasSwitch(switches::kTestingFixedHttpsPort)) { | 187 if (command_line.HasSwitch(switches::kTestingFixedHttpsPort)) { |
187 int value; | 188 int value; |
188 base::StringToInt(command_line.GetSwitchValueASCII( | 189 base::StringToInt(command_line.GetSwitchValueASCII( |
189 switches::kTestingFixedHttpsPort), &value); | 190 switches::kTestingFixedHttpsPort), &value); |
190 network_session_params.testing_fixed_https_port = value; | 191 network_session_params.testing_fixed_https_port = value; |
191 } | 192 } |
192 if (command_line.HasSwitch(switches::kHostResolverRules)) { | 193 if (command_line.HasSwitch(switches::kHostResolverRules)) { |
193 scoped_ptr<net::MappedHostResolver> mapped_host_resolver( | 194 std::unique_ptr<net::MappedHostResolver> mapped_host_resolver( |
194 new net::MappedHostResolver(std::move(host_resolver))); | 195 new net::MappedHostResolver(std::move(host_resolver))); |
195 mapped_host_resolver->SetRulesFromString( | 196 mapped_host_resolver->SetRulesFromString( |
196 command_line.GetSwitchValueASCII(switches::kHostResolverRules)); | 197 command_line.GetSwitchValueASCII(switches::kHostResolverRules)); |
197 host_resolver = std::move(mapped_host_resolver); | 198 host_resolver = std::move(mapped_host_resolver); |
198 } | 199 } |
199 | 200 |
200 // Give |storage_| ownership at the end in case it's |mapped_host_resolver|. | 201 // Give |storage_| ownership at the end in case it's |mapped_host_resolver|. |
201 storage_->set_host_resolver(std::move(host_resolver)); | 202 storage_->set_host_resolver(std::move(host_resolver)); |
202 network_session_params.host_resolver = | 203 network_session_params.host_resolver = |
203 url_request_context_->host_resolver(); | 204 url_request_context_->host_resolver(); |
204 | 205 |
205 storage_->set_http_network_session( | 206 storage_->set_http_network_session( |
206 make_scoped_ptr(new net::HttpNetworkSession(network_session_params))); | 207 base::WrapUnique(new net::HttpNetworkSession(network_session_params))); |
207 storage_->set_http_transaction_factory(make_scoped_ptr(new net::HttpCache( | 208 storage_->set_http_transaction_factory(base::WrapUnique(new net::HttpCache( |
208 storage_->http_network_session(), std::move(main_backend), | 209 storage_->http_network_session(), std::move(main_backend), |
209 true /* set_up_quic_server_info */))); | 210 true /* set_up_quic_server_info */))); |
210 | 211 |
211 scoped_ptr<net::URLRequestJobFactoryImpl> job_factory( | 212 std::unique_ptr<net::URLRequestJobFactoryImpl> job_factory( |
212 new net::URLRequestJobFactoryImpl()); | 213 new net::URLRequestJobFactoryImpl()); |
213 // Keep ProtocolHandlers added in sync with | 214 // Keep ProtocolHandlers added in sync with |
214 // ShellContentBrowserClient::IsHandledURL(). | 215 // ShellContentBrowserClient::IsHandledURL(). |
215 InstallProtocolHandlers(job_factory.get(), &protocol_handlers_); | 216 InstallProtocolHandlers(job_factory.get(), &protocol_handlers_); |
216 bool set_protocol = job_factory->SetProtocolHandler( | 217 bool set_protocol = job_factory->SetProtocolHandler( |
217 url::kDataScheme, make_scoped_ptr(new net::DataProtocolHandler)); | 218 url::kDataScheme, base::WrapUnique(new net::DataProtocolHandler)); |
218 DCHECK(set_protocol); | 219 DCHECK(set_protocol); |
219 #if !defined(DISABLE_FILE_SUPPORT) | 220 #if !defined(DISABLE_FILE_SUPPORT) |
220 set_protocol = job_factory->SetProtocolHandler( | 221 set_protocol = job_factory->SetProtocolHandler( |
221 url::kFileScheme, | 222 url::kFileScheme, |
222 make_scoped_ptr(new net::FileProtocolHandler( | 223 base::WrapUnique(new net::FileProtocolHandler( |
223 BrowserThread::GetBlockingPool()->GetTaskRunnerWithShutdownBehavior( | 224 BrowserThread::GetBlockingPool()->GetTaskRunnerWithShutdownBehavior( |
224 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)))); | 225 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)))); |
225 DCHECK(set_protocol); | 226 DCHECK(set_protocol); |
226 #endif | 227 #endif |
227 | 228 |
228 // Set up interceptors in the reverse order. | 229 // Set up interceptors in the reverse order. |
229 scoped_ptr<net::URLRequestJobFactory> top_job_factory = | 230 std::unique_ptr<net::URLRequestJobFactory> top_job_factory = |
230 std::move(job_factory); | 231 std::move(job_factory); |
231 for (URLRequestInterceptorScopedVector::reverse_iterator i = | 232 for (URLRequestInterceptorScopedVector::reverse_iterator i = |
232 request_interceptors_.rbegin(); | 233 request_interceptors_.rbegin(); |
233 i != request_interceptors_.rend(); | 234 i != request_interceptors_.rend(); |
234 ++i) { | 235 ++i) { |
235 top_job_factory.reset(new net::URLRequestInterceptingJobFactory( | 236 top_job_factory.reset(new net::URLRequestInterceptingJobFactory( |
236 std::move(top_job_factory), make_scoped_ptr(*i))); | 237 std::move(top_job_factory), base::WrapUnique(*i))); |
237 } | 238 } |
238 request_interceptors_.weak_clear(); | 239 request_interceptors_.weak_clear(); |
239 | 240 |
240 storage_->set_job_factory(std::move(top_job_factory)); | 241 storage_->set_job_factory(std::move(top_job_factory)); |
241 } | 242 } |
242 | 243 |
243 return url_request_context_.get(); | 244 return url_request_context_.get(); |
244 } | 245 } |
245 | 246 |
246 scoped_refptr<base::SingleThreadTaskRunner> | 247 scoped_refptr<base::SingleThreadTaskRunner> |
247 ShellURLRequestContextGetter::GetNetworkTaskRunner() const { | 248 ShellURLRequestContextGetter::GetNetworkTaskRunner() const { |
248 return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); | 249 return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); |
249 } | 250 } |
250 | 251 |
251 net::HostResolver* ShellURLRequestContextGetter::host_resolver() { | 252 net::HostResolver* ShellURLRequestContextGetter::host_resolver() { |
252 return url_request_context_->host_resolver(); | 253 return url_request_context_->host_resolver(); |
253 } | 254 } |
254 | 255 |
255 } // namespace content | 256 } // namespace content |
OLD | NEW |