Skip to content

Commit e33ed5b

Browse files
authored
Use built-in password store in Chrome by default (#19623)
This helps to avoid annoying situations when Gnome or KDE keyring pops up when launching Chrome in CI or during automated testing.
1 parent f3bba6e commit e33ed5b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,3 +592,4 @@ a license to everyone to use it as detailed in LICENSE.)
592592
* Alexandra Cherdantseva <neluhus.vagus@gmail.com>
593593
* Michael Schmuki <michael@schmuki.io>
594594
* Skye Gibney <skyejgibney@gmail.com>
595+
* Piotr Wierciński <laminowany@gmail.com>

emrun.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1733,7 +1733,8 @@ def run():
17331733
processname_killed_atexit = 'Safari'
17341734
elif 'chrome' in browser_exe.lower():
17351735
processname_killed_atexit = 'chrome'
1736-
browser_args += ['--enable-nacl', '--enable-pnacl', '--disable-restore-session-state', '--enable-webgl', '--no-default-browser-check', '--no-first-run', '--allow-file-access-from-files']
1736+
browser_args += ['--enable-nacl', '--enable-pnacl', '--disable-restore-session-state', '--enable-webgl',
1737+
'--no-default-browser-check', '--no-first-run', '--allow-file-access-from-files', '--password-store=basic']
17371738
if options.private_browsing:
17381739
browser_args += ['--incognito']
17391740
# if not options.run_server:

0 commit comments

Comments
 (0)