Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d43c812 authored by Aayush Gupta's avatar Aayush Gupta
Browse files

Merge tag 90.0.4430.101 from bromite



d9876e2d Release 90.0.4430.101
38eeb63d Mention new flags in README.md
a0ad5d29 Release 90.0.4430.92
ad010db0 Add flag IsCleartextPermitted default true (#1111)
b3f5b629 New flag "allow-user-certificates" (#1110)
ce1a0395 explicit denial to fetch (#1106)
54302084 Release 90.0.4430.92
e3e5a455 fix update ui for pac url config (#1098)
1e87d1b0 Mention what to do for bugs unrelated to Chromium
4af239c7 README.md (#1076)
a89f8a31 Add question for incognito tabs
0ef43d4e Release 90.0.4430.74
e3b4bf00 Merge pull request #1064 from uazo/fix-1051
45ddc390 remove unnecessary code for v90
b2975f63 Merge pull request #1054 from uazo/fix-1049
1aef9679 updated patch for v90
b5a8dc1e actual patch v89

Signed-off-by: Aayush Gupta's avatarAayush Gupta <theimpulson@e.email>
parents 36c65e98 d9876e2d
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# 90.0.4430.101
* disable RTCGetCurrentBrowsingContextMedia by default
* disable FLoC by default

# 90.0.4430.92
* restore horizontal tab switcher feature (fixes https://github.com/bromite/bromite/issues/1077)
* fix a couple of bugs in proxy saving UI (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1072)
+1 −1
Original line number Diff line number Diff line
90.0.4430.92
90.0.4430.101
+2 −0
Original line number Diff line number Diff line
@@ -146,4 +146,6 @@ Remove-offline-measurement-background-task.patch
User-agent-customization.patch
Add-AllowUserCertificates-flag.patch
Add-IsCleartextPermitted-flag.patch
Disable-RTCGetCurrentBrowsingContextMedia-by-default.patch
Disable-FLoC-by-default.patch
Automated-domain-substitution.patch
+25 −0
Original line number Diff line number Diff line
From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Thu, 29 Apr 2021 20:28:16 +0200
Subject: Disable FLoC by default

This is redundant since the privacy sandbox is already disabled by default,
but added as an extra measure
---
 components/federated_learning/features/features.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/federated_learning/features/features.cc b/components/federated_learning/features/features.cc
--- a/components/federated_learning/features/features.cc
+++ b/components/federated_learning/features/features.cc
@@ -24,7 +24,7 @@ const base::Feature kFlocIdSortingLshBasedComputation{
 // required.
 // TODO(yaoxia): merge other floc features into this one.
 const base::Feature kFederatedLearningOfCohorts{
-    "FederatedLearningOfCohorts", base::FEATURE_ENABLED_BY_DEFAULT};
+    "FederatedLearningOfCohorts", base::FEATURE_DISABLED_BY_DEFAULT};
 constexpr base::FeatureParam<base::TimeDelta> kFlocIdScheduledUpdateInterval{
     &kFederatedLearningOfCohorts, "update_interval",
     base::TimeDelta::FromDays(7)};
-- 
2.17.1
+23 −0
Original line number Diff line number Diff line
From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Thu, 29 Apr 2021 20:26:31 +0200
Subject: Disable RTCGetCurrentBrowsingContextMedia by default

---
 third_party/blink/common/features.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/third_party/blink/common/features.cc b/third_party/blink/common/features.cc
--- a/third_party/blink/common/features.cc
+++ b/third_party/blink/common/features.cc
@@ -203,7 +203,7 @@ const base::Feature kRawClipboard{"RawClipboard",
 // Kill switch for getCurrentBrowsingContextMedia(), which allows capturing of
 // web content from the tab from which it is called. (crbug.com/1136940)
 const base::Feature kRTCGetCurrentBrowsingContextMedia{
-    "RTCGetCurrentBrowsingContextMedia", base::FEATURE_ENABLED_BY_DEFAULT};
+    "RTCGetCurrentBrowsingContextMedia", base::FEATURE_DISABLED_BY_DEFAULT};
 
 // Changes the default RTCPeerConnection constructor behavior to use Unified
 // Plan as the SDP semantics. When the feature is enabled, Unified Plan is used
-- 
2.17.1