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

Side by Side Diff: android_webview/browser/net/aw_url_request_context_getter.cc

Issue 778463002: Wrapped data reduction proxy initialization into its own class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@network-delegate
Patch Set: Addressed comment from mmenke Created 6 years 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
OLDNEW
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/command_line.h" 16 #include "base/command_line.h"
17 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
18 #include "base/threading/sequenced_worker_pool.h" 18 #include "base/threading/sequenced_worker_pool.h"
19 #include "base/threading/worker_pool.h" 19 #include "base/threading/worker_pool.h"
20 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth _request_handler.h" 20 #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_conf ig_service.h" 21 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf ig_service.h"
22 #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"
23 #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_netw ork_delegate.h" 24 #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_sett ings.h" 25 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett ings.h"
25 #include "content/public/browser/browser_thread.h" 26 #include "content/public/browser/browser_thread.h"
26 #include "content/public/browser/content_browser_client.h" 27 #include "content/public/browser/content_browser_client.h"
27 #include "content/public/browser/cookie_store_factory.h" 28 #include "content/public/browser/cookie_store_factory.h"
28 #include "content/public/common/content_client.h" 29 #include "content/public/common/content_client.h"
29 #include "content/public/common/content_switches.h" 30 #include "content/public/common/content_switches.h"
30 #include "content/public/common/url_constants.h" 31 #include "content/public/common/url_constants.h"
31 #include "net/base/cache_type.h" 32 #include "net/base/cache_type.h"
32 #include "net/base/net_log.h" 33 #include "net/base/net_log.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(
205 // DataReductionProxyStatisticsPrefs is not instantiated and passed to the 206 browser_context->GetDataReductionProxyIOData()->CreateNetworkDelegate(
206 // network delegate. 207 aw_network_delegate.Pass(), false, 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 data_reduction_proxy::DataReductionProxyNetworkDelegate::
223 ProxyConfigGetter());
224
225 builder.set_network_delegate(data_reduction_proxy_network_delegate);
226 #if !defined(DISABLE_FTP_SUPPORT) 208 #if !defined(DISABLE_FTP_SUPPORT)
227 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.
228 #endif 210 #endif
229 DCHECK(data_reduction_proxy_config_service_.get()); 211 DCHECK(data_reduction_proxy_config_service_.get());
230 // Android provides a local HTTP proxy that handles all the proxying. 212 // Android provides a local HTTP proxy that handles all the proxying.
231 // 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.
232 // TODO(sgurun) is this behavior guaranteed through SDK? 214 // TODO(sgurun) is this behavior guaranteed through SDK?
233 builder.set_proxy_service( 215 builder.set_proxy_service(
234 net::ProxyService::CreateWithoutProxyResolver( 216 net::ProxyService::CreateWithoutProxyResolver(
235 data_reduction_proxy_config_service_.release(), 217 data_reduction_proxy_config_service_.release(),
(...skipping 22 matching lines...) Expand all
258 240
259 main_http_factory_.reset(main_cache); 241 main_http_factory_.reset(main_cache);
260 url_request_context_->set_http_transaction_factory(main_cache); 242 url_request_context_->set_http_transaction_factory(main_cache);
261 url_request_context_->set_cookie_store(cookie_store_.get()); 243 url_request_context_->set_cookie_store(cookie_store_.get());
262 244
263 job_factory_ = CreateJobFactory(&protocol_handlers_, 245 job_factory_ = CreateJobFactory(&protocol_handlers_,
264 request_interceptors_.Pass()); 246 request_interceptors_.Pass());
265 247
266 job_factory_.reset(new net::URLRequestInterceptingJobFactory( 248 job_factory_.reset(new net::URLRequestInterceptingJobFactory(
267 job_factory_.Pass(), make_scoped_ptr( 249 job_factory_.Pass(), make_scoped_ptr(
268 new data_reduction_proxy::DataReductionProxyInterceptor( 250 browser_context->GetDataReductionProxyIOData()->
269 data_reduction_proxy_settings->params(), NULL, 251 CreateInterceptor())));
270 browser_context->GetDataReductionProxyEventStore()))));
271 url_request_context_->set_job_factory(job_factory_.get()); 252 url_request_context_->set_job_factory(job_factory_.get());
272 } 253 }
273 254
274 net::URLRequestContext* AwURLRequestContextGetter::GetURLRequestContext() { 255 net::URLRequestContext* AwURLRequestContextGetter::GetURLRequestContext() {
275 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 256 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
276 if (!url_request_context_) 257 if (!url_request_context_)
277 InitializeURLRequestContext(); 258 InitializeURLRequestContext();
278 259
279 return url_request_context_.get(); 260 return url_request_context_.get();
280 } 261 }
(...skipping 18 matching lines...) Expand all
299 net::NetLog* AwURLRequestContextGetter::GetNetLog() { 280 net::NetLog* AwURLRequestContextGetter::GetNetLog() {
300 return net_log_.get(); 281 return net_log_.get();
301 } 282 }
302 283
303 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) { 284 void AwURLRequestContextGetter::SetKeyOnIO(const std::string& key) {
304 DCHECK(data_reduction_proxy_auth_request_handler_); 285 DCHECK(data_reduction_proxy_auth_request_handler_);
305 data_reduction_proxy_auth_request_handler_->InitAuthentication(key); 286 data_reduction_proxy_auth_request_handler_->InitAuthentication(key);
306 } 287 }
307 288
308 } // namespace android_webview 289 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698