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

Commit 6be731cc authored by csagan5's avatar csagan5
Browse files

Release 87.0.4280.131

parent b201775f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# 87.0.4280.131
* disable unified autoplay feature (fixes https://github.com/bromite/bromite/issues/804)

# 87.0.4280.106
* enable SplitCacheByNetworkIsolationKey (fixes https://github.com/bromite/bromite/issues/836)
* fix random timezone option (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/828)
+1 −1
Original line number Diff line number Diff line
87.0.4280.106
87.0.4280.131
+1 −0
Original line number Diff line number Diff line
@@ -154,3 +154,4 @@ disable-autofill-server-communication-by-default.patch
ask-permission-to-play-protected-media-by-default.patch
Enable-SplitCacheByNetworkIsolationKey.patch
Automated-domain-substitution.patch
Disable-unified-autoplay-feature.patch
+1 −1
Original line number Diff line number Diff line
@@ -1813,7 +1813,7 @@ diff --git a/chrome/browser/safe_browsing/client_side_detection_service.cc b/chr
diff --git a/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc b/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc
--- a/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc
+++ b/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc
@@ -589,14 +589,14 @@ void CheckClientDownloadRequestBase::SendRequest() {
@@ -591,14 +591,14 @@ void CheckClientDownloadRequestBase::SendRequest() {
               "This request is triggered when a download is about to complete, "
               "the download is not whitelisted, and its file extension is "
               "supported by download protection service (e.g. executables, "
+23 −0
Original line number Diff line number Diff line
From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Sat, 19 Dec 2020 20:04:14 +0100
Subject: Disable unified autoplay feature

---
 media/base/media_switches.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media/base/media_switches.cc b/media/base/media_switches.cc
--- a/media/base/media_switches.cc
+++ b/media/base/media_switches.cc
@@ -421,7 +421,7 @@ const base::Feature kUseR16Texture{"use-r16-texture",
 // Enables the Unified Autoplay policy by overriding the platform's default
 // autoplay policy.
 const base::Feature kUnifiedAutoplay{"UnifiedAutoplay",
-                                     base::FEATURE_ENABLED_BY_DEFAULT};
+                                     base::FEATURE_DISABLED_BY_DEFAULT};
 
 // Enable VA-API hardware low power encoder for all codecs on intel Gen9x gpu.
 const base::Feature kVaapiLowPowerEncoderGen9x{
-- 
2.17.1
Loading