mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
CefRequestHandler::GetAuthCredentials |scheme| argument is optional for FTP sources (issue #1794)
This commit is contained in:
@ -332,15 +332,11 @@ int CEF_CALLBACK request_handler_get_auth_credentials(
|
||||
DCHECK(host);
|
||||
if (!host)
|
||||
return 0;
|
||||
// Verify param: scheme; type: string_byref_const
|
||||
DCHECK(scheme);
|
||||
if (!scheme)
|
||||
return 0;
|
||||
// Verify param: callback; type: refptr_diff
|
||||
DCHECK(callback);
|
||||
if (!callback)
|
||||
return 0;
|
||||
// Unverified params: realm
|
||||
// Unverified params: realm, scheme
|
||||
|
||||
// Execute
|
||||
bool _retval = CefRequestHandlerCppToC::Get(self)->GetAuthCredentials(
|
||||
|
Reference in New Issue
Block a user