Skip to content
  • Marshall Greenblatt's avatar
    Add support for complete isolation of storage and permissions (cache, cookies,... · ca0e3816
    Marshall Greenblatt authored
    Add support for complete isolation of storage and permissions (cache, cookies, localStorage, access grants, etc) on a per-request-context basis (issue #1044).
    - CefRequestContext instances can be configured using a new CefRequestContextSettings structure passed to CefRequestContext::CreateContext.
    - Scheme registration is now per-request-context using new CefRequestContext::RegisterSchemeHandlerFactory and ClearSchemeHandlerFactories methods.
    - Cookie managers are now per-request-context by default and can be retrieved using a new CefRequestContext::GetDefaultCookieManager method.
    - CefURLRequest::Create now accepts an optional CefRequestContext argument for associating a URL request with a context (browser process only).
    - The CefRequestContextHandler associated with a CefRequestContext will not be released until all objects related to that context have been destroyed.
    - When the cache path is empty an in-memory cache ("incognito mode") will be used for storage and no data will be persisted to disk.
    - Add...
    ca0e3816