Title: [216170] trunk/Source/WebCore
Revision
216170
Author
[email protected]
Date
2017-05-03 20:08:40 -0700 (Wed, 03 May 2017)

Log Message

Try to fix the macOS Public SDK build
https://bugs.webkit.org/show_bug.cgi?id=171635
<rdar://problem/31812751>

Unreviewed because the commit queue told me to say this.


* platform/spi/cocoa/AVKitSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (216169 => 216170)


--- trunk/Source/WebCore/ChangeLog	2017-05-04 02:16:12 UTC (rev 216169)
+++ trunk/Source/WebCore/ChangeLog	2017-05-04 03:08:40 UTC (rev 216170)
@@ -1,3 +1,13 @@
+2017-05-03  Andy Estes  <[email protected]>
+
+        Try to fix the macOS Public SDK build
+        https://bugs.webkit.org/show_bug.cgi?id=171635
+        <rdar://problem/31812751>
+
+        Unreviewed because the commit queue told me to say this.
+
+        * platform/spi/cocoa/AVKitSPI.h:
+
 2017-05-03  Joanmarie Diggs  <[email protected]>
 
         AX: aria-rowspan value should be ignored if td/th rowspan value is provided

Modified: trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h (216169 => 216170)


--- trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h	2017-05-04 02:16:12 UTC (rev 216169)
+++ trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h	2017-05-04 03:08:40 UTC (rev 216170)
@@ -153,16 +153,19 @@
 
 #if PLATFORM(MAC) && ENABLE(WEB_PLAYBACK_CONTROLS_MANAGER)
 
+#if __MAC_OS_X_VERSION_MAX_ALLOWED < 101300
 OBJC_CLASS AVFunctionBarPlaybackControlsProvider;
 OBJC_CLASS AVFunctionBarScrubber;
 OBJC_CLASS AVFunctionBarMediaSelectionOption;
-
-#if __MAC_OS_X_VERSION_MAX_ALLOWED < 101300
 typedef AVFunctionBarMediaSelectionOption AVTouchBarMediaSelectionOption;
 typedef AVFunctionBarPlaybackControlsProvider AVTouchBarPlaybackControlsProvider;
 typedef AVFunctionBarScrubber AVTouchBarScrubber;
 #define AVTouchBarPlaybackControlsControlling AVFunctionBarPlaybackControlsControlling
-#endif // __MAC_OS_X_VERSION_MAX_ALLOWED < 101300
+#else
+OBJC_CLASS AVTouchBarPlaybackControlsProvider;
+OBJC_CLASS AVTouchBarScrubber;
+OBJC_CLASS AVTouchBarMediaSelectionOption;
+#endif
 
 #if USE(APPLE_INTERNAL_SDK)
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to