| Index: chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| diff --git a/chrome/browser/net/pref_proxy_config_tracker_impl.cc b/chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| index 6de119ea7f9ca9223fe181e13166b5775ee8dceb..02469ddf825bc7896e6590fcd44ef607023ca1a2 100644
|
| --- a/chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| +++ b/chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| @@ -27,8 +27,7 @@
|
| // Determine if |proxy| is of the form "*.googlezip.net".
|
| bool IsGooglezipDataReductionProxy(const net::ProxyServer& proxy) {
|
| return proxy.is_valid() && !proxy.is_direct() &&
|
| - base::EndsWith(proxy.host_port_pair().host(), ".googlezip.net",
|
| - base::CompareCase::SENSITIVE);
|
| + base::EndsWith(proxy.host_port_pair().host(), ".googlezip.net", true);
|
| }
|
|
|
| // Removes any Data Reduction Proxies like *.googlezip.net from |proxy_list|.
|
|
|