Title: [235686] trunk/Source/WebCore
Revision
235686
Author
[email protected]
Date
2018-09-05 13:51:30 -0700 (Wed, 05 Sep 2018)

Log Message

Unreviewed, fix the build with recent SDKs.

* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::exernalDeviceDisplayNameForPlayer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (235685 => 235686)


--- trunk/Source/WebCore/ChangeLog	2018-09-05 20:38:35 UTC (rev 235685)
+++ trunk/Source/WebCore/ChangeLog	2018-09-05 20:51:30 UTC (rev 235686)
@@ -1,3 +1,10 @@
+2018-09-05  Ryan Haddad  <[email protected]>
+
+        Unreviewed, fix the build with recent SDKs.
+
+        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+        (WebCore::exernalDeviceDisplayNameForPlayer):
+
 2018-09-05  Woodrow Wang  <[email protected]>
 
         Added runtime feature flag for web API statistics

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (235685 => 235686)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2018-09-05 20:38:35 UTC (rev 235685)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2018-09-05 20:51:30 UTC (rev 235686)
@@ -2828,7 +2828,10 @@
 
         auto outputDeviceNames = adoptNS([[NSMutableArray alloc] init]);
         for (AVOutputDevice *outputDevice in [outputContext outputDevices]) {
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
             auto outputDeviceName = adoptNS([[outputDevice name] copy]);
+#pragma clang diagnostic pop
             [outputDeviceNames addObject:outputDeviceName.get()];
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to