72 lines
3.5 KiB
Diff
72 lines
3.5 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Thu, 10 Dec 2020 21:52:35 +0100
|
|
Subject: Enable network isolation features
|
|
|
|
Enable SplitCacheByNetworkIsolationKey, kSplitHostCacheByNetworkIsolationKey,
|
|
kPartitionConnectionsByNetworkIsolationKey, kPartitionHttpServerPropertiesByNetworkIsolationKey,
|
|
kPartitionSSLSessionsByNetworkIsolationKey, PartitionExpectCTStateByNetworkIsolationKey,
|
|
PartitionNelAndReportingByNetworkIsolationKey
|
|
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
net/base/features.cc | 32 ++++++++++++++++----------------
|
|
1 file changed, 16 insertions(+), 16 deletions(-)
|
|
|
|
diff --git a/net/base/features.cc b/net/base/features.cc
|
|
--- a/net/base/features.cc
|
|
+++ b/net/base/features.cc
|
|
@@ -82,36 +82,36 @@ BASE_FEATURE(kSplitCacheByIncludeCredentials,
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
|
|
BASE_FEATURE(kSplitCacheByNetworkIsolationKey,
|
|
- "SplitCacheByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "SplitCacheByNetworkIsolationKey", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
-BASE_FEATURE(kSplitHostCacheByNetworkIsolationKey,
|
|
- "SplitHostCacheByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kSplitHostCacheByNetworkIsolationKey, // must be enabled
|
|
+ "SplitHostCacheByNetworkIsolationKey", // in Bromite
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
BASE_FEATURE(kPartitionConnectionsByNetworkIsolationKey,
|
|
- "PartitionConnectionsByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "PartitionConnectionsByNetworkIsolationKey", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
BASE_FEATURE(kForceIsolationInfoFrameOriginToTopLevelFrame,
|
|
"ForceIsolationInfoFrameOriginToTopLevelFrame",
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
|
|
-BASE_FEATURE(kPartitionHttpServerPropertiesByNetworkIsolationKey,
|
|
- "PartitionHttpServerPropertiesByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kPartitionHttpServerPropertiesByNetworkIsolationKey, // must be enabled
|
|
+ "PartitionHttpServerPropertiesByNetworkIsolationKey", // in Bromite
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
BASE_FEATURE(kPartitionSSLSessionsByNetworkIsolationKey,
|
|
- "PartitionSSLSessionsByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "PartitionSSLSessionsByNetworkIsolationKey", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
BASE_FEATURE(kPartitionExpectCTStateByNetworkIsolationKey,
|
|
- "PartitionExpectCTStateByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "PartitionExpectCTStateByNetworkIsolationKey", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
BASE_FEATURE(kPartitionNelAndReportingByNetworkIsolationKey,
|
|
- "PartitionNelAndReportingByNetworkIsolationKey",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "PartitionNelAndReportingByNetworkIsolationKey", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
BASE_FEATURE(kEnableDoubleKeyNetworkAnonymizationKey,
|
|
"EnableDoubleKeyNetworkAnonymizationKey",
|
|
--
|
|
2.25.1
|