diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/libwebrtc/moz-patch-stack/0055.patch | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/moz-patch-stack/0055.patch')
-rw-r--r-- | third_party/libwebrtc/moz-patch-stack/0055.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/third_party/libwebrtc/moz-patch-stack/0055.patch b/third_party/libwebrtc/moz-patch-stack/0055.patch new file mode 100644 index 0000000000..ee530423b1 --- /dev/null +++ b/third_party/libwebrtc/moz-patch-stack/0055.patch @@ -0,0 +1,29 @@ +From: Nico Grunbaum <na-g@nostrum.com> +Date: Thu, 28 Oct 2021 18:13:00 +0000 +Subject: Bug 1729367 - P7 - restore mac PID tracking using new API;r=mjf + a=webrtc-update + +Differential Revision: https://phabricator.services.mozilla.com/D129721 +Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/1495ca5ef535f8ad692a3a579ca42eddc14f39a8 +--- + modules/desktop_capture/window_capturer_mac.mm | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/modules/desktop_capture/window_capturer_mac.mm b/modules/desktop_capture/window_capturer_mac.mm +index f99b4a74d1..10f6a74650 100644 +--- a/modules/desktop_capture/window_capturer_mac.mm ++++ b/modules/desktop_capture/window_capturer_mac.mm +@@ -170,8 +170,9 @@ void WindowCapturerMac::CaptureFrame() { + return webrtc::GetWindowList( + [sources](CFDictionaryRef window) { + WindowId window_id = GetWindowId(window); ++ int pid = GetWindowOwnerPid(window); + if (window_id != kNullWindowId) { +- sources->push_back(DesktopCapturer::Source{window_id, GetWindowTitle(window)}); ++ sources->push_back(DesktopCapturer::Source{window_id, pid, GetWindowTitle(window)}); + } + return true; + }, +-- +2.34.1 + |