With the recent breaking changes in Chromium framework and CEF the method ICookieManager.SetStoragePath()
has been removed. I didn't find the way how to set this path properly now.
I need to set it once for all cookies, and previously I was using the following start-up code:
var settings = new CefSettings();
settings.CefCommandLineArgs.Add("disable-gpu", "1");
Cef.Initialize(settings);
Cef.GetGlobalCookieManager().SetStoragePath(this.pipeName, true);
What is the expected way of setting this path now?