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 7143f7c209f51362a20bf16032c80bfe5367839b..79bce81f2fe40a35cf3bb6db527a1cb0ce9a1095 100644 |
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc |
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_metrics.cc |
@@ -296,7 +296,6 @@ class DailyDataSavingUpdate { |
// shortest delay. |
bool IsBypassRequest(const net::URLRequest* request, int64* delay_seconds) { |
// TODO(bengr): Add support for other data reduction proxy configurations. |
-#if defined(SPDY_PROXY_AUTH_ORIGIN) |
DataReductionProxyParams params( |
bengr
2014/07/11 20:42:53
These params should be the same params that are pa
Not at Google. Contact bengr
2014/07/16 22:41:33
Add a TODO and an entry in the sheet.
|
DataReductionProxyParams::kAllowed | |
DataReductionProxyParams::kFallbackAllowed | |
@@ -335,9 +334,6 @@ bool IsBypassRequest(const net::URLRequest* request, int64* delay_seconds) { |
if (delay_seconds != NULL) |
*delay_seconds = shortest_delay; |
return true; |
-#else |
- return false; |
-#endif |
} |
} // namespace |