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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.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: Rebase test fixes Created 5 years, 10 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: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
index 7da1858ef63517d71f4d1cfea652e00714d19c8a..3b8fbab02cb625b8ba5bf0d94cebc7d280364c9b 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
@@ -37,9 +37,9 @@ class URLRequest;
namespace data_reduction_proxy {
-class DataReductionProxyAuthRequestHandler;
class DataReductionProxyConfigurator;
class DataReductionProxyParams;
+class DataReductionProxyRequestOptions;
class DataReductionProxyStatisticsPrefs;
class DataReductionProxyUsageStats;
@@ -60,7 +60,7 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
DataReductionProxyNetworkDelegate(
scoped_ptr<net::NetworkDelegate> network_delegate,
DataReductionProxyParams* params,
- DataReductionProxyAuthRequestHandler* handler,
+ DataReductionProxyRequestOptions* handler,
const DataReductionProxyConfigurator* configurator);
~DataReductionProxyNetworkDelegate() override;
@@ -137,8 +137,7 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
// Must outlive this DataReductionProxyNetworkDelegate.
DataReductionProxyUsageStats* data_reduction_proxy_usage_stats_;
- DataReductionProxyAuthRequestHandler*
- data_reduction_proxy_auth_request_handler_;
+ DataReductionProxyRequestOptions* data_reduction_proxy_request_options_;
DataReductionProxyStatisticsPrefs* data_reduction_proxy_statistics_prefs_;

Powered by Google App Engine
This is Rietveld 408576698