Removing "WinHttpGetProxyForUrl failed" message.
WinHttpGetProxyForUrl() can fail in some network configurations. For example it often fails when running in a home network when it cannot download the PAC script. In other words it is normal for this function to fail and the calling cade should just be able to handle it (which is does already). BUG=156135 Review URL: https://codereview.chromium.org/11183007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162220 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -76,7 +76,6 @@ int ProxyResolverWinHttp::GetProxyForURL(const GURL& query_url,
|
||||
}
|
||||
if (!ok) {
|
||||
DWORD error = GetLastError();
|
||||
LOG(ERROR) << "WinHttpGetProxyForUrl failed: " << error;
|
||||
// If we got here because of RPC timeout during out of process PAC
|
||||
// resolution, no further requests on this session are going to work.
|
||||
if (ERROR_WINHTTP_TIMEOUT == error ||
|
||||
|
Reference in New Issue
Block a user