OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "android_webview/browser/net/aw_url_request_context_getter.h" | 5 #include "android_webview/browser/net/aw_url_request_context_getter.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "android_webview/browser/aw_browser_context.h" | 9 #include "android_webview/browser/aw_browser_context.h" |
10 #include "android_webview/browser/aw_content_browser_client.h" | 10 #include "android_webview/browser/aw_content_browser_client.h" |
11 #include "android_webview/browser/aw_request_interceptor.h" | 11 #include "android_webview/browser/aw_request_interceptor.h" |
12 #include "android_webview/browser/net/aw_network_delegate.h" | 12 #include "android_webview/browser/net/aw_network_delegate.h" |
13 #include "android_webview/browser/net/aw_url_request_job_factory.h" | 13 #include "android_webview/browser/net/aw_url_request_job_factory.h" |
14 #include "android_webview/browser/net/init_native_callback.h" | 14 #include "android_webview/browser/net/init_native_callback.h" |
15 #include "android_webview/common/aw_content_client.h" | 15 #include "android_webview/common/aw_content_client.h" |
16 #include "base/bind.h" | 16 #include "base/bind.h" |
17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
18 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
19 #include "base/threading/sequenced_worker_pool.h" | 19 #include "base/threading/sequenced_worker_pool.h" |
20 #include "base/threading/worker_pool.h" | 20 #include "base/threading/worker_pool.h" |
21 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth _request_handler.h" | 21 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth _request_handler.h" |
22 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf igurator.h" | 22 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf igurator.h" |
23 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_inte rceptor.h" | 23 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_inte rceptor.h" |
24 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d ata.h" | |
24 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw ork_delegate.h" | 25 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw ork_delegate.h" |
25 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett ings.h" | 26 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett ings.h" |
26 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
27 #include "content/public/browser/content_browser_client.h" | 28 #include "content/public/browser/content_browser_client.h" |
28 #include "content/public/browser/cookie_store_factory.h" | 29 #include "content/public/browser/cookie_store_factory.h" |
29 #include "content/public/common/content_client.h" | 30 #include "content/public/common/content_client.h" |
30 #include "content/public/common/content_switches.h" | 31 #include "content/public/common/content_switches.h" |
31 #include "content/public/common/url_constants.h" | 32 #include "content/public/common/url_constants.h" |
32 #include "net/base/cache_type.h" | 33 #include "net/base/cache_type.h" |
33 #include "net/base/net_log.h" | 34 #include "net/base/net_log.h" |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
194 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 195 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
195 DCHECK(!url_request_context_); | 196 DCHECK(!url_request_context_); |
196 | 197 |
197 net::URLRequestContextBuilder builder; | 198 net::URLRequestContextBuilder builder; |
198 builder.set_user_agent(GetUserAgent()); | 199 builder.set_user_agent(GetUserAgent()); |
199 scoped_ptr<AwNetworkDelegate> aw_network_delegate(new AwNetworkDelegate()); | 200 scoped_ptr<AwNetworkDelegate> aw_network_delegate(new AwNetworkDelegate()); |
200 | 201 |
201 AwBrowserContext* browser_context = AwBrowserContext::GetDefault(); | 202 AwBrowserContext* browser_context = AwBrowserContext::GetDefault(); |
202 DCHECK(browser_context); | 203 DCHECK(browser_context); |
203 | 204 |
204 // Compression statistics are not gathered for WebView, so | 205 builder.set_network_delegate( |
sgurun-gerrit only
2015/01/16 19:04:40
also please add a comment here explaining what fal
bengr
2015/01/17 00:20:47
Done.
| |
205 // DataReductionProxyStatisticsPrefs is not instantiated and passed to the | 206 browser_context->GetDataReductionProxyIOData()->CreateNetworkDelegate( |
206 // network delegate. | 207 aw_network_delegate.Pass(), false).release()); |
207 DataReductionProxySettings* data_reduction_proxy_settings = | |
208 browser_context->GetDataReductionProxySettings(); | |
209 DCHECK(data_reduction_proxy_settings); | |
210 data_reduction_proxy_auth_request_handler_.reset( | |
211 new data_reduction_proxy::DataReductionProxyAuthRequestHandler( | |
212 data_reduction_proxy::Client::WEBVIEW_ANDROID, | |
213 data_reduction_proxy_settings->params(), | |
214 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO))); | |
215 | |
216 data_reduction_proxy::DataReductionProxyNetworkDelegate* | |
217 data_reduction_proxy_network_delegate = | |
218 new data_reduction_proxy::DataReductionProxyNetworkDelegate( | |
219 aw_network_delegate.Pass(), | |
220 data_reduction_proxy_settings->params(), | |
221 data_reduction_proxy_auth_request_handler_.get(), | |
222 base::Bind( | |
223 &data_reduction_proxy::DataReductionProxyConfigurator:: | |
224 GetProxyConfigOnIOThread, | |
225 base::Unretained( | |
226 browser_context->GetDataReductionProxyConfigurator()))); | |
227 data_reduction_proxy_network_delegate->InitProxyConfigOverrider( | |
228 base::Bind(data_reduction_proxy::OnResolveProxyHandler)); | |
229 | |
230 builder.set_network_delegate(data_reduction_proxy_network_delegate); | |
231 #if !defined(DISABLE_FTP_SUPPORT) | 208 #if !defined(DISABLE_FTP_SUPPORT) |
232 builder.set_ftp_enabled(false); // Android WebView does not support ftp yet. | 209 builder.set_ftp_enabled(false); // Android WebView does not support ftp yet. |
233 #endif | 210 #endif |
234 DCHECK(proxy_config_service_.get()); | 211 DCHECK(proxy_config_service_.get()); |
235 // Android provides a local HTTP proxy that handles all the proxying. | 212 // Android provides a local HTTP proxy that handles all the proxying. |
236 // Create the proxy without a resolver since we rely on this local HTTP proxy. | 213 // Create the proxy without a resolver since we rely on this local HTTP proxy. |
237 // TODO(sgurun) is this behavior guaranteed through SDK? | 214 // TODO(sgurun) is this behavior guaranteed through SDK? |
238 builder.set_proxy_service( | 215 builder.set_proxy_service( |
239 net::ProxyService::CreateWithoutProxyResolver( | 216 net::ProxyService::CreateWithoutProxyResolver( |
240 proxy_config_service_.release(), | 217 proxy_config_service_.release(), |
(...skipping 22 matching lines...) Expand all Loading... | |
263 | 240 |
264 main_http_factory_.reset(main_cache); | 241 main_http_factory_.reset(main_cache); |
265 url_request_context_->set_http_transaction_factory(main_cache); | 242 url_request_context_->set_http_transaction_factory(main_cache); |
266 url_request_context_->set_cookie_store(cookie_store_.get()); | 243 url_request_context_->set_cookie_store(cookie_store_.get()); |
267 | 244 |
268 job_factory_ = CreateJobFactory(&protocol_handlers_, | 245 job_factory_ = CreateJobFactory(&protocol_handlers_, |
269 request_interceptors_.Pass()); | 246 request_interceptors_.Pass()); |
270 | 247 |
271 job_factory_.reset(new net::URLRequestInterceptingJobFactory( | 248 job_factory_.reset(new net::URLRequestInterceptingJobFactory( |
272 job_factory_.Pass(), make_scoped_ptr( | 249 job_factory_.Pass(), make_scoped_ptr( |
273 new data_reduction_proxy::DataReductionProxyInterceptor( | 250 browser_context->GetDataReductionProxyIOData()-> |
274 data_reduction_proxy_settings->params(), NULL, | 251 CreateInterceptor()))); |
275 browser_context->GetDataReductionProxyEventStore())))); | |
276 url_request_context_->set_job_factory(job_factory_.get()); | 252 url_request_context_->set_job_factory(job_factory_.get()); |
277 } | 253 } |
278 | 254 |
279 net::URLRequestContext* AwURLRequestContextGetter::GetURLRequestContext() { | 255 net::URLRequestContext* AwURLRequestContextGetter::GetURLRequestContext() { |
280 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 256 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
281 if (!url_request_context_) | 257 if (!url_request_context_) |
282 InitializeURLRequestContext(); | 258 InitializeURLRequestContext(); |
283 | 259 |
284 return url_request_context_.get(); | 260 return url_request_context_.get(); |
285 } | 261 } |
(...skipping 18 matching lines...) Expand all Loading... | |
304 net::NetLog* AwURLRequestContextGetter::GetNetLog() { | 280 net::NetLog* AwURLRequestContextGetter::GetNetLog() { |
305 return net_log_.get(); | 281 return net_log_.get(); |
306 } | 282 } |
307 | 283 |
308 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) { | 284 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) { |
309 DCHECK(data_reduction_proxy_auth_request_handler_); | 285 DCHECK(data_reduction_proxy_auth_request_handler_); |
310 data_reduction_proxy_auth_request_handler_->InitAuthentication(key); | 286 data_reduction_proxy_auth_request_handler_->InitAuthentication(key); |
311 } | 287 } |
312 | 288 |
313 } // namespace android_webview | 289 } // namespace android_webview |
OLD | NEW |