Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

Isolated user sessions

Post Reply
geziel
Posts: 6
Joined: Thu Jun 14, 2018 8:15 pm

Isolated user sessions

Post by geziel »

Is it possible to use isolated user sessions (something like chrome's "new incognito window") but on different webviews in the same application? How to do this?
User avatar
salvadordf
Posts: 4057
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Isolated user sessions

Post by salvadordf »

Hi,

To isolate browsers you need to create different request contexts for each of them like the MDIBrowser demo does.

To create a browser in "incognito mode" you just need to leave GlobalCEFApp.cache blank before the GlobalCEFApp.StartMainProcess call.

Code: Select all

GlobalCEFApp.cache := '';
geziel
Posts: 6
Joined: Thu Jun 14, 2018 8:15 pm

Re: Isolated user sessions

Post by geziel »

Thank you very much. You are doing an amazing job. Congrats man!
Post Reply