From d85d9723916aac21588ee54b78cba4b95dd8f3b4 Mon Sep 17 00:00:00 2001 From: amaitland Date: Thu, 30 Apr 2015 10:26:33 +1000 Subject: [PATCH] Set no_sandbox = true Still logs a `Running without renderer sandbox` message, hopefully one day it'll work --- CefSharp.Core/CefSettings.h | 1 + 1 file changed, 1 insertion(+) diff --git a/CefSharp.Core/CefSettings.h b/CefSharp.Core/CefSettings.h index 45a1dfffc7..26cd784faf 100644 --- a/CefSharp.Core/CefSettings.h +++ b/CefSharp.Core/CefSettings.h @@ -26,6 +26,7 @@ namespace CefSharp CefSettings() : _cefSettings(new ::CefSettings()) { _cefSettings->multi_threaded_message_loop = true; + _cefSettings->no_sandbox = true; BrowserSubprocessPath = "CefSharp.BrowserSubprocess.exe"; _cefCustomSchemes = gcnew List(); _cefCommandLineArgs = gcnew Dictionary();