Home
last modified time | relevance | path

Searched refs:CefSSLHostStateDelegate (Results 1 – 4 of 4) sorted by relevance

/third_party/cef/libcef/browser/
Dssl_host_state_delegate.cc39 CefSSLHostStateDelegate::CefSSLHostStateDelegate() {} in CefSSLHostStateDelegate() function in CefSSLHostStateDelegate
41 CefSSLHostStateDelegate::~CefSSLHostStateDelegate() {} in ~CefSSLHostStateDelegate()
43 void CefSSLHostStateDelegate::HostRanInsecureContent( in HostRanInsecureContent()
50 bool CefSSLHostStateDelegate::DidHostRunInsecureContent( in DidHostRunInsecureContent()
58 void CefSSLHostStateDelegate::AllowHttpForHost( in AllowHttpForHost()
64 bool CefSSLHostStateDelegate::IsHttpAllowedForHost( in IsHttpAllowedForHost()
72 void CefSSLHostStateDelegate::AllowCert(const std::string& host, in AllowCert()
79 void CefSSLHostStateDelegate::Clear( in Clear()
97 SSLHostStateDelegate::CertJudgment CefSSLHostStateDelegate::QueryPolicy( in QueryPolicy()
107 void CefSSLHostStateDelegate::RevokeUserAllowExceptions( in RevokeUserAllowExceptions()
[all …]
Dssl_host_state_delegate.h44 class CefSSLHostStateDelegate : public content::SSLHostStateDelegate {
46 CefSSLHostStateDelegate();
48 CefSSLHostStateDelegate(const CefSSLHostStateDelegate&) = delete;
49 CefSSLHostStateDelegate& operator=(const CefSSLHostStateDelegate&) = delete;
51 ~CefSSLHostStateDelegate() override;
/third_party/cef/libcef/browser/alloy/
Dalloy_browser_context.h19 class CefSSLHostStateDelegate; variable
131 std::unique_ptr<CefSSLHostStateDelegate> ssl_host_state_delegate_;
Dalloy_browser_context.cc377 ssl_host_state_delegate_.reset(new CefSSLHostStateDelegate()); in GetSSLHostStateDelegate()