commit
035667547d
@ -0,0 +1,10 @@
|
||||
diff -up chromium-76.0.3809.132/components/os_crypt/features.gni.rhel8 chromium-76.0.3809.132/components/os_crypt/features.gni
|
||||
--- chromium-76.0.3809.132/components/os_crypt/features.gni.rhel8 2019-09-06 17:08:01.242314126 -0400
|
||||
+++ chromium-76.0.3809.132/components/os_crypt/features.gni 2019-09-06 17:08:10.139134707 -0400
|
||||
@@ -7,5 +7,5 @@ import("//build/config/ui.gni")
|
||||
declare_args() {
|
||||
# Whether to use libgnome-keyring (deprecated by libsecret).
|
||||
# See http://crbug.com/466975 and http://crbug.com/355223.
|
||||
- use_gnome_keyring = (is_linux || is_chromeos_lacros) && use_glib
|
||||
+ use_gnome_keyring = false
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
diff -up chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc.futex-time64 chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc
|
||||
--- chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc.futex-time64 2021-03-15 15:31:09.440719811 -0400
|
||||
+++ chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc 2021-03-15 15:33:27.494393985 -0400
|
||||
@@ -191,7 +191,11 @@ ResultExpr EvaluateSyscallImpl(int fs_de
|
||||
}
|
||||
#endif
|
||||
|
||||
- if (sysno == __NR_futex)
|
||||
+ if (sysno == __NR_futex
|
||||
+#if defined(__NR_futex_time64)
|
||||
+ || sysno == __NR_futex_time64
|
||||
+#endif
|
||||
+ )
|
||||
return RestrictFutex();
|
||||
|
||||
if (sysno == __NR_set_robust_list)
|
||||
diff -up chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc.futex-time64 chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc
|
||||
--- chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc.futex-time64 2021-03-15 15:33:45.018479568 -0400
|
||||
+++ chromium-89.0.4389.82/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc 2021-03-15 15:34:55.002821350 -0400
|
||||
@@ -420,6 +420,9 @@ bool SyscallSets::IsAllowedFutex(int sys
|
||||
case __NR_get_robust_list:
|
||||
case __NR_set_robust_list:
|
||||
case __NR_futex:
|
||||
+#if defined(__NR_futex_time64)
|
||||
+ case __NR_futex_time64:
|
||||
+#endif
|
||||
default:
|
||||
return false;
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
diff -up chromium-89.0.4389.82/chrome/browser/component_updater/registration.cc.widevine-no-download chromium-89.0.4389.82/chrome/browser/component_updater/registration.cc
|
||||
--- chromium-89.0.4389.82/chrome/browser/component_updater/registration.cc.widevine-no-download 2021-03-18 14:10:27.606759188 -0400
|
||||
+++ chromium-89.0.4389.82/chrome/browser/component_updater/registration.cc 2021-03-18 14:10:41.792833905 -0400
|
||||
@@ -96,10 +96,6 @@ void RegisterComponentsForUpdate(bool is
|
||||
// TODO(crbug.com/1069814): Remove after 2021-10-01.
|
||||
CleanUpPepperFlashComponent();
|
||||
|
||||
-#if BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
|
||||
- RegisterWidevineCdmComponent(cus);
|
||||
-#endif // BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
|
||||
-
|
||||
#if BUILDFLAG(ENABLE_NACL) && !defined(OS_ANDROID)
|
||||
#if BUILDFLAG(IS_CHROMEOS_ASH)
|
||||
// PNaCl on Chrome OS is on rootfs and there is no need to download it. But
|
Loading…
Reference in new issue