26 lines
898 B
Diff
26 lines
898 B
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Mon, 19 Jan 2026 12:00:34 +0000
|
|
Subject: Disable device bound session
|
|
|
|
Disable DBSC due to potential privacy issues
|
|
see https://w3c.github.io/webappsec-dbsc/#privacy-considerations
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
net/features.gni | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/net/features.gni b/net/features.gni
|
|
--- a/net/features.gni
|
|
+++ b/net/features.gni
|
|
@@ -57,7 +57,7 @@ declare_args() {
|
|
chrome_root_store_only = is_win || is_mac || is_linux || is_chromeos
|
|
|
|
# DBSC is only supported on Windows, Linux and Mac for now.
|
|
- enable_device_bound_sessions = is_win || is_linux || is_mac
|
|
+ enable_device_bound_sessions = false
|
|
|
|
# Bracketed URIs parsing is only available for debug builds.
|
|
# TODO(crbug.com/365771838): Ensure tests are updated if needed if this
|
|
--
|