Title: [241833] trunk/Source/WebCore/PAL
Revision
241833
Author
[email protected]
Date
2019-02-20 13:38:40 -0800 (Wed, 20 Feb 2019)

Log Message

Attempt to fix the Apple Internal build following r241828
(https://trac.webkit.org/changeset/241828/webkit)

Conditionally include a private header.

* pal/spi/ios/UIKitSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (241832 => 241833)


--- trunk/Source/WebCore/PAL/ChangeLog	2019-02-20 21:30:40 UTC (rev 241832)
+++ trunk/Source/WebCore/PAL/ChangeLog	2019-02-20 21:38:40 UTC (rev 241833)
@@ -1,5 +1,14 @@
 2019-02-20  Daniel Bates  <[email protected]>
 
+        Attempt to fix the Apple Internal build following r241828
+        (https://trac.webkit.org/changeset/241828/webkit)
+
+        Conditionally include a private header.
+
+        * pal/spi/ios/UIKitSPI.h:
+
+2019-02-20  Daniel Bates  <[email protected]>
+
         [iOS] Tweak UI for focus rings
         https://bugs.webkit.org/show_bug.cgi?id=194864
         <rdar://problem/47831886>

Modified: trunk/Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h (241832 => 241833)


--- trunk/Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h	2019-02-20 21:30:40 UTC (rev 241832)
+++ trunk/Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h	2019-02-20 21:38:40 UTC (rev 241833)
@@ -37,7 +37,6 @@
 #import <UIKit/UIApplicationSceneConstants.h>
 #import <UIKit/UIApplication_Private.h>
 #import <UIKit/UIColor_Private.h>
-#import <UIKit/UIFocusRingStyle.h>
 #import <UIKit/UIFont_Private.h>
 #import <UIKit/UIInterface_Private.h>
 #import <UIKit/UIScreen_Private.h>
@@ -55,6 +54,10 @@
 - (CGFloat)_iOSMacScale;
 @end
 
+#if __has_include(<UIKit/UIFocusRingStyle.h>)
+#import <UIKit/UIFocusRingStyle.h>
+#endif
+
 #else // USE(APPLE_INTERNAL_SDK)
 
 #import <UIKit/UIKit.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to