26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sat, 3 Dec 2022 12:02:20 +0100
|
|
Subject: Enable third-party storage partitioning
|
|
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
net/base/features.cc | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/net/base/features.cc b/net/base/features.cc
|
|
--- a/net/base/features.cc
|
|
+++ b/net/base/features.cc
|
|
@@ -278,8 +278,8 @@ BASE_FEATURE(kCookieDomainRejectNonASCII,
|
|
// Enables partitioning of third party storage (IndexedDB, CacheStorage, etc.)
|
|
// by the top level site to reduce fingerprinting.
|
|
BASE_FEATURE(kThirdPartyStoragePartitioning,
|
|
- "ThirdPartyStoragePartitioning",
|
|
- base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+ "ThirdPartyStoragePartitioning", // must be enabled
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite
|
|
|
|
// Whether to use the new code paths needed to support partitioning Blob URLs.
|
|
// This exists as a kill-switch in case an issue is identified with the Blob
|
|
--
|
|
2.25.1
|