Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
index b4bad4fcee32e16f121f3c2a25ef6b9062c5ef41..1fb5a855340b0aabaaf8e7be64ae6b8231d1e91b 100644 |
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
@@ -169,6 +169,9 @@ void DataReductionProxyAuthRequestHandler::AddAuthorizationHeader( |
header_value += ", b=" + build_number_ + ", p=" + patch_number_; |
if (!client_.empty()) |
header_value += ", c=" + client_; |
+ if (DataReductionProxyParams::IsLoFiCommandLineSwitchOn()) { |
+ header_value += ", q=low"; |
bengr
2015/01/17 01:06:17
This has even less to do with authorization than d
megjablon
2015/01/24 01:48:59
Done.
|
+ } |
headers->SetHeader(kChromeProxyHeader, header_value); |
} |