| Index: net/proxy/proxy_config_service_linux.cc
|
| diff --git a/net/proxy/proxy_config_service_linux.cc b/net/proxy/proxy_config_service_linux.cc
|
| index be8068d672c3d8cf36764bf9683db400dfd268fc..58ae1dfb564320f063bdaf842216ceccb17f05b8 100644
|
| --- a/net/proxy/proxy_config_service_linux.cc
|
| +++ b/net/proxy/proxy_config_service_linux.cc
|
| @@ -55,7 +55,7 @@ namespace {
|
| std::string FixupProxyHostScheme(ProxyServer::Scheme scheme,
|
| std::string host) {
|
| if (scheme == ProxyServer::SCHEME_SOCKS5 &&
|
| - StartsWithASCII(host, "socks4://", false)) {
|
| + base::StartsWithASCII(host, "socks4://", false)) {
|
| // We default to socks 5, but if the user specifically set it to
|
| // socks4://, then use that.
|
| scheme = ProxyServer::SCHEME_SOCKS4;
|
|
|