Title: [262641] trunk/Source/WebCore
Revision
262641
Author
cdu...@apple.com
Date
2020-06-05 12:12:40 -0700 (Fri, 05 Jun 2020)

Log Message

Unreviewed, silence deprecation warning to fix build with latest SDK.

* platform/mediarecorder/cocoa/MediaRecorderPrivateWriterCocoa.mm:
(WebCore::MediaRecorderPrivateWriter::stopRecording):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (262640 => 262641)


--- trunk/Source/WebCore/ChangeLog	2020-06-05 19:09:18 UTC (rev 262640)
+++ trunk/Source/WebCore/ChangeLog	2020-06-05 19:12:40 UTC (rev 262641)
@@ -1,3 +1,10 @@
+2020-06-05  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, silence deprecation warning to fix build with latest SDK.
+
+        * platform/mediarecorder/cocoa/MediaRecorderPrivateWriterCocoa.mm:
+        (WebCore::MediaRecorderPrivateWriter::stopRecording):
+
 2020-06-05  Andres Gonzalez  <andresg...@apple.com>
 
         Accessibility isolated tree mode: crashes when navigating websites, com.apple.AppKit: ConvertOutgoingValueForAttribute.

Modified: trunk/Source/WebCore/platform/mediarecorder/cocoa/MediaRecorderPrivateWriterCocoa.mm (262640 => 262641)


--- trunk/Source/WebCore/platform/mediarecorder/cocoa/MediaRecorderPrivateWriterCocoa.mm	2020-06-05 19:09:18 UTC (rev 262640)
+++ trunk/Source/WebCore/platform/mediarecorder/cocoa/MediaRecorderPrivateWriterCocoa.mm	2020-06-05 19:12:40 UTC (rev 262641)
@@ -445,7 +445,9 @@
         if (!weakThis)
             return;
 
+ALLOW_DEPRECATED_DECLARATIONS_BEGIN
         [m_writer flush];
+ALLOW_DEPRECATED_DECLARATIONS_END
         [m_writer finishWritingWithCompletionHandler:[this, weakThis = WTFMove(weakThis)]() mutable {
             callOnMainThread([this, weakThis = WTFMove(weakThis)]() mutable {
                 if (!weakThis)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to