From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- third_party/libwebrtc/moz-patch-stack/0049.patch | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 third_party/libwebrtc/moz-patch-stack/0049.patch (limited to 'third_party/libwebrtc/moz-patch-stack/0049.patch') diff --git a/third_party/libwebrtc/moz-patch-stack/0049.patch b/third_party/libwebrtc/moz-patch-stack/0049.patch new file mode 100644 index 0000000000..3074531967 --- /dev/null +++ b/third_party/libwebrtc/moz-patch-stack/0049.patch @@ -0,0 +1,26 @@ +From: Nico Grunbaum +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 56c94baada..8f5dc25516 100644 +--- a/modules/desktop_capture/window_capturer_mac.mm ++++ b/modules/desktop_capture/window_capturer_mac.mm +@@ -169,8 +169,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; + }, -- cgit v1.2.3