mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add CefCookieManager interface and CefRequestHandler::GetCookieManager for custom cookie handling (issue #542).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@534 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -139,6 +139,14 @@ typedef struct _cef_request_handler_t {
|
||||
struct _cef_browser_t* browser, int isProxy, const cef_string_t* host,
|
||||
int port, const cef_string_t* realm, const cef_string_t* scheme,
|
||||
cef_string_t* username, cef_string_t* password);
|
||||
|
||||
///
|
||||
// Called on the UI thread to retrieve the cookie manager. Cookies managers
|
||||
// can be unique per browser or shared across multiple browsers. The global
|
||||
// cookie manager will be used if this function returns NULL.
|
||||
///
|
||||
struct _cef_cookie_manager_t* (CEF_CALLBACK *get_cookie_manager)(
|
||||
struct _cef_request_handler_t* self, struct _cef_browser_t* browser);
|
||||
} cef_request_handler_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user