cefsimple: Minor code and docs cleanup

This commit is contained in:
Marshall Greenblatt
2024-01-17 17:44:33 -05:00
parent f1fe098e09
commit 468e55e553
4 changed files with 23 additions and 21 deletions

View File

@@ -74,8 +74,11 @@ int APIENTRY wWinMain(HINSTANCE hInstance,
// Specify CEF global settings here.
CefSettings settings;
// Use the CEF Chrome runtime if "--enable-chrome-runtime" is specified via
// the command-line. Otherwise, use the CEF Alloy runtime. For more
// information about CEF runtimes see
// https://bitbucket.org/chromiumembedded/cef/wiki/Architecture.md#markdown-header-cef3
if (command_line->HasSwitch("enable-chrome-runtime")) {
// Enable experimental Chrome runtime. See issue #2969 for details.
settings.chrome_runtime = true;
}