Title: [185133] trunk/Source/WebCore
Revision
185133
Author
[email protected]
Date
2015-06-02 16:51:18 -0700 (Tue, 02 Jun 2015)

Log Message

Build fix when building with internal SDKs
https://bugs.webkit.org/show_bug.cgi?id=145576
rdar://problem/21089476

Reviewed by Alexey Proskuryakov.

* platform/spi/mac/AVFoundationSPI.h: Include the right header.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (185132 => 185133)


--- trunk/Source/WebCore/ChangeLog	2015-06-02 23:45:11 UTC (rev 185132)
+++ trunk/Source/WebCore/ChangeLog	2015-06-02 23:51:18 UTC (rev 185133)
@@ -1,3 +1,13 @@
+2015-06-02  Jon Lee  <[email protected]>
+
+        Build fix when building with internal SDKs
+        https://bugs.webkit.org/show_bug.cgi?id=145576
+        rdar://problem/21089476
+
+        Reviewed by Alexey Proskuryakov.
+
+        * platform/spi/mac/AVFoundationSPI.h: Include the right header.
+
 2015-06-02  Dean Jackson  <[email protected]>
 
         No need to guard the sizes attribute against PICTURE_SIZES in preload scanner.

Modified: trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h (185132 => 185133)


--- trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2015-06-02 23:45:11 UTC (rev 185132)
+++ trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2015-06-02 23:51:18 UTC (rev 185133)
@@ -54,9 +54,12 @@
 #if PLATFORM(IOS)
 
 #if HAVE(AVKIT) && USE(APPLE_INTERNAL_SDK)
+
+#import <AVFoundation/AVPlayerLayer_Private.h>
 #import <AVKit/AVPlayerViewController_WebKitOnly.h>
-#endif
 
+#else
+
 #import <AVFoundation/AVPlayerLayer.h>
 
 @interface AVPlayerLayer (AVPlayerLayerOptimizedFullscreenModeSupportPrivate)
@@ -65,3 +68,5 @@
 
 #endif
 
+#endif // PLATFORM(IOS)
+
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to