We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug It's not possible to set in-memory user data. (worked in V126)
To Reproduce in cefclient - APIENTRY wWinMain set
CefSettings settings; CefString(&settings.root_cache_path).FromWString(root_cache_path); CefString(&settings.cache_path).FromWString(L"");
Expected behavior In %tmp%/CEF (or root_cache_path if set) there should be only:
But we got
Versions
Additional context
Also tried:
OnBeforeCommandLineProcessing: command_line->AppendSwitch("incognito");
command_line->AppendSwitch("incognito");
OnContextInitialized added incognito_context to browser_view:
CefRequestContextSettings context_settings; CefString(&context_settings.cache_path).FromWString(L""); context_settings.persist_session_cookies = false; CefRefPtr<CefRequestContext> incognito_context = CefRequestContext::CreateContext( context_settings, nullptr);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
It's not possible to set in-memory user data. (worked in V126)
To Reproduce
in cefclient - APIENTRY wWinMain set
Expected behavior
In %tmp%/CEF (or root_cache_path if set) there should be only:
But we got
Versions
Additional context
Also tried:
OnBeforeCommandLineProcessing:
command_line->AppendSwitch("incognito");
OnContextInitialized added incognito_context to browser_view:
The text was updated successfully, but these errors were encountered: