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" | |
22 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf
igurator.h" | 21 #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" | 22 #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" | 23 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" |
25 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw
ork_delegate.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_requ
est_options.h" |
26 #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" |
27 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
28 #include "content/public/browser/content_browser_client.h" | 28 #include "content/public/browser/content_browser_client.h" |
29 #include "content/public/browser/cookie_store_factory.h" | 29 #include "content/public/browser/cookie_store_factory.h" |
30 #include "content/public/common/content_client.h" | 30 #include "content/public/common/content_client.h" |
31 #include "content/public/common/content_switches.h" | 31 #include "content/public/common/content_switches.h" |
32 #include "content/public/common/url_constants.h" | 32 #include "content/public/common/url_constants.h" |
33 #include "net/base/cache_type.h" | 33 #include "net/base/cache_type.h" |
34 #include "net/base/net_log.h" | 34 #include "net/base/net_log.h" |
35 #include "net/cookies/cookie_store.h" | 35 #include "net/cookies/cookie_store.h" |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); | 264 return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); |
265 } | 265 } |
266 | 266 |
267 void AwURLRequestContextGetter::SetHandlersAndInterceptors( | 267 void AwURLRequestContextGetter::SetHandlersAndInterceptors( |
268 content::ProtocolHandlerMap* protocol_handlers, | 268 content::ProtocolHandlerMap* protocol_handlers, |
269 content::URLRequestInterceptorScopedVector request_interceptors) { | 269 content::URLRequestInterceptorScopedVector request_interceptors) { |
270 std::swap(protocol_handlers_, *protocol_handlers); | 270 std::swap(protocol_handlers_, *protocol_handlers); |
271 request_interceptors_.swap(request_interceptors); | 271 request_interceptors_.swap(request_interceptors); |
272 } | 272 } |
273 | 273 |
274 data_reduction_proxy::DataReductionProxyAuthRequestHandler* | 274 data_reduction_proxy::DataReductionProxyRequestOptions* |
275 AwURLRequestContextGetter::GetDataReductionProxyAuthRequestHandler() const { | 275 AwURLRequestContextGetter::GetDataReductionProxyRequestOptions() const { |
276 return data_reduction_proxy_auth_request_handler_.get(); | 276 return data_reduction_proxy_request_options_.get(); |
277 } | 277 } |
278 | 278 |
279 net::NetLog* AwURLRequestContextGetter::GetNetLog() { | 279 net::NetLog* AwURLRequestContextGetter::GetNetLog() { |
280 return net_log_.get(); | 280 return net_log_.get(); |
281 } | 281 } |
282 | 282 |
283 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) { | 283 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) { |
284 DCHECK(data_reduction_proxy_auth_request_handler_); | 284 DCHECK(data_reduction_proxy_request_options_); |
285 data_reduction_proxy_auth_request_handler_->InitAuthentication(key); | 285 data_reduction_proxy_request_options_->InitAuthentication(key); |
286 } | 286 } |
287 | 287 |
288 } // namespace android_webview | 288 } // namespace android_webview |
OLD | NEW |