Set enable_background_mode=false by default (see issue #2969)

This mode doesn't make sense with CEF, and it was causing strange
shutdown crashes when running with Chrome mode enabled.
This commit is contained in:
Marshall Greenblatt
2020-06-27 16:43:23 -04:00
parent 1174994211
commit f5587b74f0
6 changed files with 124 additions and 0 deletions

View File

@ -215,6 +215,12 @@ def GetRecommendedDefaultArgs():
# and macOS builds. Currently turned off for CEF because it requires
# additional setup and is not yet tested. See issue #2956.
'chrome_pgo_phase': 0,
# Disable support for background apps, which don't make sense with CEF.
# Default is enabled on desktop platforms. This feature was also causing
# strange shutdown crashes when using the Chrome runtime with a Debug
# component build on Windows.
'enable_background_mode': False,
}
if platform == 'linux':