| 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 f839949947814ef35ddbecc088cc5c112f3451c7..a4ec56c3657869bd29ca98fc1cd627102da34e73 100644
|
| --- a/chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| +++ b/chrome/browser/net/pref_proxy_config_tracker_impl.cc
|
| @@ -27,7 +27,7 @@ namespace {
|
| // Determine if |proxy| is of the form "*.googlezip.net".
|
| bool IsGooglezipDataReductionProxy(const net::ProxyServer& proxy) {
|
| return proxy.is_valid() && !proxy.is_direct() &&
|
| - EndsWith(proxy.host_port_pair().host(), ".googlezip.net", true);
|
| + base::EndsWith(proxy.host_port_pair().host(), ".googlezip.net", true);
|
| }
|
|
|
| // Removes any Data Reduction Proxies like *.googlezip.net from |proxy_list|.
|
|
|