Add API for SSL status and certificate retrieval (issue #1924)

This commit is contained in:
Marshall Greenblatt
2016-09-02 13:01:33 +03:00
parent 4d1a32e028
commit 10c1fd6b8d
53 changed files with 2239 additions and 1036 deletions

View File

@ -40,6 +40,8 @@
#include "include/cef_base.h"
class CefSSLStatus;
///
// Class used to represent an entry in navigation history.
///
@ -108,6 +110,12 @@ class CefNavigationEntry : public virtual CefBase {
///
/*--cef()--*/
virtual int GetHttpStatusCode() =0;
///
// Returns the SSL information for this navigation entry.
///
/*--cef()--*/
virtual CefRefPtr<CefSSLStatus> GetSSLStatus() =0;
};
#endif // CEF_INCLUDE_CEF_NAVIGATION_ENTRY_H_