Adding no-sandbox to non sandbox webcontents
This commit is contained in:
parent
3ee55d9cd3
commit
421bf71b98
1 changed files with 4 additions and 1 deletions
|
@ -111,8 +111,11 @@ void WebContentsPreferences::AppendExtraCommandLineSwitches(
|
||||||
// If the `sandbox` option was passed to the BrowserWindow's webPreferences,
|
// If the `sandbox` option was passed to the BrowserWindow's webPreferences,
|
||||||
// pass `--enable-sandbox` to the renderer so it won't have any node.js
|
// pass `--enable-sandbox` to the renderer so it won't have any node.js
|
||||||
// integration.
|
// integration.
|
||||||
if (IsSandboxed(web_contents))
|
if (IsSandboxed(web_contents)) {
|
||||||
command_line->AppendSwitch(switches::kEnableSandbox);
|
command_line->AppendSwitch(switches::kEnableSandbox);
|
||||||
|
} else if (!command_line->HasSwitch(switches::kEnableSandbox)) {
|
||||||
|
command_line->AppendSwitch(::switches::kNoSandbox);
|
||||||
|
}
|
||||||
if (web_preferences.GetBoolean("nativeWindowOpen", &b) && b)
|
if (web_preferences.GetBoolean("nativeWindowOpen", &b) && b)
|
||||||
command_line->AppendSwitch(switches::kNativeWindowOpen);
|
command_line->AppendSwitch(switches::kNativeWindowOpen);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue