Title: [254671] trunk/Source/WebCore/PAL
Revision
254671
Author
[email protected]
Date
2020-01-16 03:36:10 -0800 (Thu, 16 Jan 2020)

Log Message

Attempt to fix internal iOS Debug builds

    Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:2723:46: error: multiple methods named 'name' found [-Werror,-Wobjc-multiple-method-names]
                auto outputDeviceName = adoptNS([[outputDevice name] copy]);
                                                 ^~~~~~~~~~~~~~~~~~~

* pal/spi/mac/AVFoundationSPI.h: Import header that defines
-[AVOutputDevice name].

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (254670 => 254671)


--- trunk/Source/WebCore/PAL/ChangeLog	2020-01-16 10:43:19 UTC (rev 254670)
+++ trunk/Source/WebCore/PAL/ChangeLog	2020-01-16 11:36:10 UTC (rev 254671)
@@ -1,3 +1,14 @@
+2020-01-16  David Kilzer  <[email protected]>
+
+        Attempt to fix internal iOS Debug builds
+
+            Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:2723:46: error: multiple methods named 'name' found [-Werror,-Wobjc-multiple-method-names]
+                        auto outputDeviceName = adoptNS([[outputDevice name] copy]);
+                                                         ^~~~~~~~~~~~~~~~~~~
+
+        * pal/spi/mac/AVFoundationSPI.h: Import header that defines
+        -[AVOutputDevice name].
+
 2020-01-14  Myles C. Maxfield  <[email protected]>
 
         [Cocoa] Glyph lookup should be language-sensitive (specifically between Yiddish and Hebrew)

Modified: trunk/Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h (254670 => 254671)


--- trunk/Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h	2020-01-16 10:43:19 UTC (rev 254670)
+++ trunk/Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h	2020-01-16 11:36:10 UTC (rev 254671)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2016 Apple Inc. All rights reserved.
+ * Copyright (C) 2015-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -36,6 +36,7 @@
 
 #import <AVFoundation/AVAssetCache_Private.h>
 #import <AVFoundation/AVOutputContext_Private.h>
+#import <AVFoundation/AVOutputDevice.h>
 #import <AVFoundation/AVPlayerItem_Private.h>
 #import <AVFoundation/AVPlayerLayer_Private.h>
 #import <AVFoundation/AVPlayer_Private.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to