Title: [289701] trunk/Source/WebCore
Revision
289701
Author
eric.carl...@apple.com
Date
2022-02-12 14:57:46 -0800 (Sat, 12 Feb 2022)

Log Message

[macOS] Use system window and screen picker when available
https://bugs.webkit.org/show_bug.cgi?id=236531
rdar://87111816

Unreviewed build fix.


* platform/mediastream/mac/ScreenCaptureKitSharingSessionManager.mm:
(WebCore::ScreenCaptureKitSharingSessionManager::takeSharingSessionForFilter):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (289700 => 289701)


--- trunk/Source/WebCore/ChangeLog	2022-02-12 22:44:19 UTC (rev 289700)
+++ trunk/Source/WebCore/ChangeLog	2022-02-12 22:57:46 UTC (rev 289701)
@@ -1,3 +1,14 @@
+2022-02-12  Eric Carlson  <eric.carl...@apple.com>
+
+        [macOS] Use system window and screen picker when available
+        https://bugs.webkit.org/show_bug.cgi?id=236531
+        rdar://87111816
+
+        Unreviewed build fix.
+
+        * platform/mediastream/mac/ScreenCaptureKitSharingSessionManager.mm:
+        (WebCore::ScreenCaptureKitSharingSessionManager::takeSharingSessionForFilter):
+
 2022-02-12  Yusuke Suzuki  <ysuz...@apple.com>
 
         WebGL2 AllowShared TypedArray should be accepted

Modified: trunk/Source/WebCore/platform/mediastream/mac/ScreenCaptureKitSharingSessionManager.mm (289700 => 289701)


--- trunk/Source/WebCore/platform/mediastream/mac/ScreenCaptureKitSharingSessionManager.mm	2022-02-12 22:44:19 UTC (rev 289700)
+++ trunk/Source/WebCore/platform/mediastream/mac/ScreenCaptureKitSharingSessionManager.mm	2022-02-12 22:57:46 UTC (rev 289701)
@@ -264,7 +264,7 @@
     RetainPtr<SCContentSharingSession> session = m_pendingCaptureSessions[index];
     m_pendingCaptureSessions.remove(index);
 
-    return WTFMove(session);
+    return session;
 }
 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to