Title: [258533] trunk/Source/WebCore/PAL
- Revision
- 258533
- Author
- [email protected]
- Date
- 2020-03-16 17:30:39 -0700 (Mon, 16 Mar 2020)
Log Message
Build fix.
https://bugs.webkit.org/show_bug.cgi?id=208951
* pal/spi/cocoa/AVFoundationSPI.h:
r258314 was missing a nullability annotation.
Modified Paths
Diff
Modified: trunk/Source/WebCore/PAL/ChangeLog (258532 => 258533)
--- trunk/Source/WebCore/PAL/ChangeLog 2020-03-17 00:14:34 UTC (rev 258532)
+++ trunk/Source/WebCore/PAL/ChangeLog 2020-03-17 00:30:39 UTC (rev 258533)
@@ -1,3 +1,11 @@
+2020-03-16 Alex Christensen <[email protected]>
+
+ Build fix.
+ https://bugs.webkit.org/show_bug.cgi?id=208951
+
+ * pal/spi/cocoa/AVFoundationSPI.h:
+ r258314 was missing a nullability annotation.
+
2020-03-16 Per Arne Vollan <[email protected]>
[macOS] Accessibility sandbox regressions
Modified: trunk/Source/WebCore/PAL/pal/spi/cocoa/AVFoundationSPI.h (258532 => 258533)
--- trunk/Source/WebCore/PAL/pal/spi/cocoa/AVFoundationSPI.h 2020-03-17 00:14:34 UTC (rev 258532)
+++ trunk/Source/WebCore/PAL/pal/spi/cocoa/AVFoundationSPI.h 2020-03-17 00:30:39 UTC (rev 258533)
@@ -360,12 +360,15 @@
#if USE(APPLE_INTERNAL_SDK)
#include <AVFoundation/AVSampleBufferVideoOutput.h>
#else
+
+NS_ASSUME_NONNULL_BEGIN
@interface AVSampleBufferVideoOutput : NSObject
- (CVPixelBufferRef)copyPixelBufferForSourceTime:(CMTime)sourceTime sourceTimeForDisplay:(nullable CMTime *)outSourceTimeForDisplay;
@end
+NS_ASSUME_NONNULL_END
@interface AVSampleBufferDisplayLayer (VideoOutput)
@property (nonatomic, nullable) AVSampleBufferVideoOutput *output;
@end
-#endif
-#endif
+#endif // USE(APPLE_INTERNAL_SDK)
+#endif // HAVE(AVSAMPLEBUFFERVIDEOOUTPUT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes