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

Unified Diff: android_webview/browser/net/aw_url_request_context_getter.h

Issue 792803007: Make Data Reduction Proxy a best effort proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated tests Created 5 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/browser/net/aw_url_request_context_getter.h
diff --git a/android_webview/browser/net/aw_url_request_context_getter.h b/android_webview/browser/net/aw_url_request_context_getter.h
index b8afdf8e7af9be3e3b093f9f7776324b27aa8479..50736ba61fc7afa546c66e214da411dd6f4b49fa 100644
--- a/android_webview/browser/net/aw_url_request_context_getter.h
+++ b/android_webview/browser/net/aw_url_request_context_getter.h
@@ -25,7 +25,6 @@ class URLRequestJobFactory;
namespace data_reduction_proxy {
class DataReductionProxyAuthRequestHandler;
-class DataReductionProxyConfigService;
}
namespace android_webview {
@@ -37,8 +36,7 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
AwURLRequestContextGetter(
const base::FilePath& cache_path,
net::CookieStore* cookie_store,
- scoped_ptr<data_reduction_proxy::DataReductionProxyConfigService>
- config_service);
+ scoped_ptr<net::ProxyConfigService> config_service);
// net::URLRequestContextGetter implementation.
virtual net::URLRequestContext* GetURLRequestContext() override;
@@ -76,8 +74,7 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
scoped_refptr<net::CookieStore> cookie_store_;
scoped_ptr<net::NetLog> net_log_;
scoped_ptr<net::URLRequestContext> url_request_context_;
- scoped_ptr<data_reduction_proxy::DataReductionProxyConfigService>
- data_reduction_proxy_config_service_;
+ scoped_ptr<net::ProxyConfigService> proxy_config_service_;
scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
data_reduction_proxy_auth_request_handler_;
scoped_ptr<net::URLRequestJobFactory> job_factory_;
« no previous file with comments | « android_webview/browser/aw_browser_context.cc ('k') | android_webview/browser/net/aw_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698