From 92d9b732084392fa75a6c11d552e8ed30f436e8a Mon Sep 17 00:00:00 2001 From: hawkeye116477 Date: Fri, 31 Jul 2020 11:13:32 +0200 Subject: [PATCH 1/3] Bug 554279 - Defer toolbar initialization to get XUL overlays for the toolbar palette loaded. --- .../customizableui/content/toolbar.xml | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/browser/components/customizableui/content/toolbar.xml b/browser/components/customizableui/content/toolbar.xml index 5b90b295529b6..4cdb8905237a1 100644 --- a/browser/components/customizableui/content/toolbar.xml +++ b/browser/components/customizableui/content/toolbar.xml @@ -13,6 +13,25 @@ + + + node.getAttribute("skipintoolbarset") != "true" && node.id) .map(node => node.id); CustomizableUI.registerToolbarNode(this, children); - ]]> + ]]> + From 74e630527fc7a04e831544bf79e2402d4512c4e2 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 24 Feb 2020 22:04:16 +0000 Subject: [PATCH 2/3] Bug 1616780 - Add __NR_sched_getattr to the list of thread function r=jld Introduced in: https://gitlab.gnome.org/GNOME/glib/commit/8aeca4fa647bfd0f35c4a86b1e6ca6e955519ca5 Shipping in glib 2.63.5 (available in Debian experimental) Thanks to @padenot for the suggestion! Differential Revision: https://phabricator.services.mozilla.com/D63451 --- security/sandbox/linux/SandboxFilter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp index 6712e237fa6f2..d3dc67ebcb4df 100644 --- a/security/sandbox/linux/SandboxFilter.cpp +++ b/security/sandbox/linux/SandboxFilter.cpp @@ -1139,6 +1139,7 @@ class ContentSandboxPolicy : public SandboxPolicyCommon { case __NR_getpriority: case __NR_setpriority: + case __NR_sched_getattr: case __NR_sched_get_priority_min: case __NR_sched_get_priority_max: case __NR_sched_getscheduler: From c47536ff7b6bc0e91f1b6977887fc4fa2977f9cc Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 29 Feb 2020 04:14:52 +0000 Subject: [PATCH 3/3] Bug 1616780 - Also add __NR_sched_setattr to the list of thread function r=jld Differential Revision: https://phabricator.services.mozilla.com/D64736 --- security/sandbox/linux/SandboxFilter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp index d3dc67ebcb4df..fae4fd7acb3ee 100644 --- a/security/sandbox/linux/SandboxFilter.cpp +++ b/security/sandbox/linux/SandboxFilter.cpp @@ -1140,6 +1140,7 @@ class ContentSandboxPolicy : public SandboxPolicyCommon { case __NR_getpriority: case __NR_setpriority: case __NR_sched_getattr: + case __NR_sched_setattr: case __NR_sched_get_priority_min: case __NR_sched_get_priority_max: case __NR_sched_getscheduler: