31 lines
1.4 KiB
Diff
31 lines
1.4 KiB
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Mon, 15 May 2023 12:33:18 +0000
|
|
Subject: Disable PrivateStateTokens API
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
services/network/public/cpp/features.cc | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/services/network/public/cpp/features.cc b/services/network/public/cpp/features.cc
|
|
--- a/services/network/public/cpp/features.cc
|
|
+++ b/services/network/public/cpp/features.cc
|
|
@@ -168,12 +168,12 @@ BASE_FEATURE(kAttributionReportingCrossAppWeb, // in bromite
|
|
// set, and handling their responses, according to the protocol.
|
|
// (See https://github.com/WICG/trust-token-api.)
|
|
BASE_FEATURE(kPrivateStateTokens,
|
|
- "PrivateStateTokens",
|
|
- base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+ "PrivateStateTokens", // must be disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT); // in bromite
|
|
|
|
// Secondary flag used by the FLEDGE ads experiment in the interim before
|
|
// PSTs are fully rolled out to stable.
|
|
-BASE_FEATURE(kFledgePst, "TrustTokens", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kFledgePst, "TrustTokens", base::FEATURE_DISABLED_BY_DEFAULT); // must be disabled
|
|
|
|
// Determines which Trust Tokens operations require the TrustTokens origin trial
|
|
// active in order to be used. This is runtime-configurable so that the Trust
|
|
--
|
|
2.25.1
|