From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Sat, 2 Nov 2019 16:22:56 +0100 Subject: Disable some signed exchange features License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html Change-Id: I1d06a92894f347fbd84a3305b7cb4614ae30a961 --- content/public/common/content_features.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc --- a/content/public/common/content_features.cc +++ b/content/public/common/content_features.cc @@ -1138,14 +1138,14 @@ BASE_FEATURE(kShouldAllowFirstPartyStorageKeyOverrideFromEmbedder, // Signed Exchange Reporting for distributors // https://www.chromestatus.com/feature/5687904902840320 BASE_FEATURE(kSignedExchangeReportingForDistributors, - "SignedExchangeReportingForDistributors", - base::FEATURE_ENABLED_BY_DEFAULT); + "SignedExchangeReportingForDistributors", // must be disabled + base::FEATURE_DISABLED_BY_DEFAULT); // in Bromite // Origin-Signed HTTP Exchanges (for WebPackage Loading) // https://www.chromestatus.com/feature/5745285984681984 BASE_FEATURE(kSignedHTTPExchange, - "SignedHTTPExchange", - base::FEATURE_ENABLED_BY_DEFAULT); + "SignedHTTPExchange", // must be disabled + base::FEATURE_DISABLED_BY_DEFAULT); // in Bromite // Delays RenderProcessHost shutdown by a few seconds to allow the subframe's // process to be potentially reused. This aims to reduce process churn in -- 2.40.1