Commit d6a4574a authored by alexeypa@chromium.org's avatar alexeypa@chromium.org

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
parent 344aa38c
......@@ -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 ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment