Implement OnSelectClientCertificate (fixes #3789)

This commit is contained in:
Hunter Laux
2024-10-23 12:57:53 -04:00
committed by Marshall Greenblatt
parent 030272fe4c
commit fc20e76d3b
6 changed files with 194 additions and 13 deletions

View File

@ -192,8 +192,11 @@ class CefRequestHandler : public virtual CefBaseRefCounted {
///
/// Called on the UI thread when a client certificate is being requested for
/// authentication. Return false to use the default behavior and automatically
/// select the first certificate available. Return true and call
/// authentication. Return false to use the default behavior. If the
/// |certificates| list is not empty the default behavior will be to display a
/// dialog for certificate selection. If the |certificates| list is empty then
/// the default behavior will be not to show a dialog and it will continue
/// without using any certificate. Return true and call
/// CefSelectClientCertificateCallback::Select either in this method or at a
/// later time to select a certificate. Do not call Select or call it with
/// NULL to continue without using any certificate. |isProxy| indicates