Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.cc |
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.cc |
index 3d942ff1ef3972b7763e7b6818c82434541ea6c1..06ba3ba205dde896e2f6fe7b138466cded2e6780 100644 |
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.cc |
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.cc |
@@ -112,7 +112,8 @@ bool DataReductionProxyBypassProtocol::MaybeBypassProxyAndPrepareToRetry( |
net::ProxyServer::SCHEME_HTTP, request->proxy_server()); |
data_reduction_proxy_type_info.is_alternative = false; |
data_reduction_proxy_type_info.is_fallback = false; |
- data_reduction_proxy_type_info.is_ssl = request->url().SchemeIsSecure(); |
+ data_reduction_proxy_type_info.is_ssl = |
+ request->url().SchemeIsCryptographic(); |
} |
// TODO(bengr): Implement bypass for CONNECT tunnel. |
if (data_reduction_proxy_type_info.is_ssl) |