Fixed linter issues but now the code looks awful
This commit is contained in:
parent
b3c7e2bf33
commit
e3535d664b
2 changed files with 8 additions and 6 deletions
|
@ -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;
|
if (allow_ntlm_everywhere_) return true;
|
||||||
return brightray::URLRequestContextGetter::Delegate::AllowNTLMCredentialsForDomain(auth_origin);
|
return brightray::URLRequestContextGetter
|
||||||
|
::Delegate::AllowNTLMCredentialsForDomain(auth_origin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue