With my problem on printing SVGs with fill:rgba style and also PDFs with shaded graphics I wanted to know...
Is there a reason why JCEF turns off the Chromium sandboxing?
see code src/native/context.cpp:192:
- Code: Select all
settings.no_sandbox = true;
The comments above:
- Code: Select all
// Sandbox is not supported because:
// - Use of a separate sub-process executable on Windows.
// - Use of a temporary file to communicate custom schemes to the
// renderer process.
Is the separate sub-process executable on Windows the problem that Chromium is initialized by java.exe and subprocesses should run with jcef_helper.exe?
And I can't say anything about the "Use of a temporary file to communicate custom schemes to the renderer process" point.
Is this still a problem and can't be achieved in another more chromium (including sandboxing) way?
What would have to be done to enable sandboxing for JCEF?