-
Notifications
You must be signed in to change notification settings - Fork 853
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set default WebRTC policy, add default settings documentation
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Default Settings | ||
|
||
Vanilla Chromium settings are not often changed by ungoogled-chromium, however there are some exceptions. | ||
Below is a list of the documented changes to the default Chromium settings. | ||
|
||
Setting | New State | Location | ||
-- | -- | -- | ||
Allow sites to check if you have payment methods saved | Disabled | chrome://settings/payments | ||
Ask where to save each file before downloading | Enabled | chrome://settings/downloads | ||
Auto sign-in | Disabled | chrome://settings/passwords | ||
Block third-party cookies | Enabled | chrome://settings/cookies | ||
Clear cookies and site data when you close all windows | Enabled | chrome://settings/cookies | ||
Continue running background apps when Chromium is closed | Disabled | chrome://settings/system | ||
Hyperlink auditing (\<a ping>) | Disabled | NA | ||
Link Doctor | Disabled | NA | ||
Offer to save passwords | Disabled | chrome://settings/passwords | ||
Payment autofill | Disabled | chrome://settings/payments | ||
Preload pages | Disabled | chrome://settings/cookies | ||
Search suggestions | Disabled | chrome://settings/syncSetup | ||
Show bookmark bar | Enabled | chrome://settings/appearance | ||
WebRTC IP handling policy | Disable Non-Proxied UDP | `--webrtc-ip-handling-policy` |
11 changes: 11 additions & 0 deletions
11
patches/extra/ungoogled-chromium/default-webrtc-ip-handling-policy.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/chrome/browser/ui/browser_ui_prefs.cc | ||
+++ b/chrome/browser/ui/browser_ui_prefs.cc | ||
@@ -91,7 +91,7 @@ void RegisterBrowserUserPrefs(user_prefs | ||
false); | ||
#endif | ||
registry->RegisterStringPref(prefs::kWebRTCIPHandlingPolicy, | ||
- blink::kWebRTCIPHandlingDefault); | ||
+ blink::kWebRTCIPHandlingDisableNonProxiedUdp); | ||
registry->RegisterStringPref(prefs::kWebRTCUDPPortRange, std::string()); | ||
registry->RegisterBooleanPref(prefs::kWebRtcEventLogCollectionAllowed, false); | ||
registry->RegisterListPref(prefs::kWebRtcLocalIpsAllowedUrls); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters