Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: net/proxy/proxy_resolver_winhttp.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698