| Index: components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc
|
| diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc
|
| index 48298eb805a7a2b3c4b98ca936cc51236e698b6d..00d1b63d5cf3da417ddb92f46318daaee13cbaeb 100644
|
| --- a/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc
|
| +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc
|
| @@ -22,10 +22,8 @@ namespace data_reduction_proxy {
|
|
|
| namespace {
|
|
|
| -#if defined(SPDY_PROXY_AUTH_ORIGIN)
|
| // A bypass delay more than this is treated as a long delay.
|
| const int kLongBypassDelayInSeconds = 30 * 60;
|
| -#endif
|
|
|
| // Increments an int64, stored as a string, in a ListPref at the specified
|
| // index. The value must already exist and be a string representation of a
|
| @@ -302,7 +300,6 @@ DataReductionProxyRequestType GetDataReductionProxyRequestType(
|
| NOTREACHED();
|
| return UNKNOWN_TYPE;
|
| }
|
| -#if defined(SPDY_PROXY_AUTH_ORIGIN)
|
| DataReductionProxyParams params(
|
| DataReductionProxyParams::kAllowed |
|
| DataReductionProxyParams::kFallbackAllowed |
|
| @@ -313,7 +310,6 @@ DataReductionProxyRequestType GetDataReductionProxyRequestType(
|
| return LONG_BYPASS;
|
| return SHORT_BYPASS;
|
| }
|
| -#endif
|
| if (request->response_info().headers.get() &&
|
| HasDataReductionProxyViaHeader(request->response_info().headers.get(),
|
| NULL)) {
|
|
|