31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sat, 26 Mar 2022 16:41:55 +0100
|
|
Subject: Disable AsyncDNS by default
|
|
|
|
This feature is detrimental to privacy, see also:
|
|
* https://bugs.chromium.org/p/chromium/issues/detail?id=805020
|
|
---
|
|
chrome/common/chrome_features.cc | 8 ++------
|
|
1 file changed, 2 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
|
|
--- a/chrome/common/chrome_features.cc
|
|
+++ b/chrome/common/chrome_features.cc
|
|
@@ -95,12 +95,8 @@ const base::Feature kArcPiGhostWindow{"ArcPiGhostWindow",
|
|
|
|
// Enables the built-in DNS resolver.
|
|
const base::Feature kAsyncDns {
|
|
- "AsyncDns",
|
|
-#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
|
|
- base::FEATURE_ENABLED_BY_DEFAULT
|
|
-#else
|
|
- base::FEATURE_DISABLED_BY_DEFAULT
|
|
-#endif
|
|
+ "AsyncDns", // Bromite guard for this feature to be always disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT // ^
|
|
};
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
--
|
|
2.25.1
|