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

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

Issue 791493015: Adding q=low to the Chrome-Proxy request header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed bengr comments 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 50736ba61fc7afa546c66e214da411dd6f4b49fa..24ce098b549be7b75732b6238e2f60e3f7b3ee02 100644
--- a/android_webview/browser/net/aw_url_request_context_getter.h
+++ b/android_webview/browser/net/aw_url_request_context_getter.h
@@ -24,7 +24,7 @@ class URLRequestJobFactory;
}
namespace data_reduction_proxy {
-class DataReductionProxyAuthRequestHandler;
+class DataReductionProxyRequestOptions;
}
namespace android_webview {
@@ -43,8 +43,8 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
virtual scoped_refptr<base::SingleThreadTaskRunner>
GetNetworkTaskRunner() const override;
- data_reduction_proxy::DataReductionProxyAuthRequestHandler*
- GetDataReductionProxyAuthRequestHandler() const;
+ data_reduction_proxy::DataReductionProxyRequestOptions*
+ GetDataReductionProxyRequestOptions() const;
// NetLog is thread-safe, so clients can call this method from arbitrary
// threads (UI and IO).
@@ -75,8 +75,8 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
scoped_ptr<net::NetLog> net_log_;
scoped_ptr<net::URLRequestContext> url_request_context_;
scoped_ptr<net::ProxyConfigService> proxy_config_service_;
- scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
- data_reduction_proxy_auth_request_handler_;
+ scoped_ptr<data_reduction_proxy::DataReductionProxyRequestOptions>
+ data_reduction_proxy_request_options_;
scoped_ptr<net::URLRequestJobFactory> job_factory_;
scoped_ptr<net::HttpTransactionFactory> main_http_factory_;

Powered by Google App Engine
This is Rietveld 408576698