mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Make the CefAuthCallback::Continue password parameter optional (issue #1928)
This commit is contained in:
@ -27,10 +27,7 @@ void CefAuthCallbackCToCpp::Continue(const CefString& username,
|
||||
DCHECK(!username.empty());
|
||||
if (username.empty())
|
||||
return;
|
||||
// Verify param: password; type: string_byref_const
|
||||
DCHECK(!password.empty());
|
||||
if (password.empty())
|
||||
return;
|
||||
// Unverified params: password
|
||||
|
||||
// Execute
|
||||
_struct->cont(_struct,
|
||||
|
Reference in New Issue
Block a user