Index: net/proxy/proxy_resolver_winhttp.cc |
diff --git a/net/proxy/proxy_resolver_winhttp.cc b/net/proxy/proxy_resolver_winhttp.cc |
index 2d90dab6e05f4806cd4d528ae0f58e0d1b9df555..362f2bf9072245a1a60e31ed22ee59ed635e6033 100644 |
--- a/net/proxy/proxy_resolver_winhttp.cc |
+++ b/net/proxy/proxy_resolver_winhttp.cc |
@@ -67,13 +67,15 @@ int ProxyResolverWinHttp::GetProxyForURL(const GURL& query_url, |
// resolver. This is important for Vista and Win2k3. |
BOOL ok = WinHttpGetProxyForUrl(session_handle_, |
base::ASCIIToWide(query_url.spec()).c_str(), |
- &options, &info); |
+ &options, |
+ &info); |
if (!ok) { |
if (ERROR_WINHTTP_LOGIN_FAILURE == GetLastError()) { |
options.fAutoLogonIfChallenged = TRUE; |
- ok = WinHttpGetProxyForUrl( |
- session_handle_, base::ASCIIToWide(query_url.spec()).c_str(), |
- &options, &info); |
+ ok = WinHttpGetProxyForUrl(session_handle_, |
+ base::ASCIIToWide(query_url.spec()).c_str(), |
+ &options, |
+ &info); |
} |
if (!ok) { |
DWORD error = GetLastError(); |