Fixed linter issues but now the code looks awful

This commit is contained in:
Paul Betts 2015-10-19 13:12:17 -07:00
parent b3c7e2bf33
commit e3535d664b
2 changed files with 8 additions and 6 deletions

View file

@ -170,9 +170,11 @@ void AtomBrowserContext::RegisterPrefs(PrefRegistrySimple* pref_registry) {
}
bool AtomBrowserContext::AllowNTLMCredentialsForDomain(const GURL& auth_origin) {
bool AtomBrowserContext::AllowNTLMCredentialsForDomain
(const GURL& auth_origin) {
if (allow_ntlm_everywhere_) return true;
return brightray::URLRequestContextGetter::Delegate::AllowNTLMCredentialsForDomain(auth_origin);
return brightray::URLRequestContextGetter
::Delegate::AllowNTLMCredentialsForDomain(auth_origin);
}