Title: [199917] trunk/Source/WebKit2
Revision
199917
Author
ryanhad...@apple.com
Date
2016-04-22 15:41:49 -0700 (Fri, 22 Apr 2016)

Log Message

Missed some macros to fix builds that do not support AVKit.

Unreviewed build fix.

* UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in:
* WebProcess/cocoa/WebVideoFullscreenManager.messages.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (199916 => 199917)


--- trunk/Source/WebKit2/ChangeLog	2016-04-22 22:38:54 UTC (rev 199916)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-22 22:41:49 UTC (rev 199917)
@@ -1,5 +1,14 @@
 2016-04-22  Ryan Haddad  <ryanhad...@apple.com>
 
+        Missed some macros to fix builds that do not support AVKit.
+
+        Unreviewed build fix.
+
+        * UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in:
+        * WebProcess/cocoa/WebVideoFullscreenManager.messages.in:
+
+2016-04-22  Ryan Haddad  <ryanhad...@apple.com>
+
         Fix builds that do not support AVKit
 
         Unreviewed build fix.

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in (199916 => 199917)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in	2016-04-22 22:38:54 UTC (rev 199916)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in	2016-04-22 22:41:49 UTC (rev 199917)
@@ -20,7 +20,7 @@
 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-#if PLATFORM(IOS) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
+#if (PLATFORM(IOS) HAVE(AVKIT)) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
 messages -> WebVideoFullscreenManagerProxy {
     SetVideoDimensions(uint64_t contextId, bool hasVideo, unsigned width, unsigned height)
     SetupFullscreenWithID(uint64_t contextId, uint32_t videoLayerID, WebCore::IntRect initialRect, float hostingScaleFactor, WebCore::HTMLMediaElementEnums::VideoFullscreenMode videoFullscreenMode, bool allowsPictureInPicture)

Modified: trunk/Source/WebKit2/WebProcess/cocoa/WebVideoFullscreenManager.messages.in (199916 => 199917)


--- trunk/Source/WebKit2/WebProcess/cocoa/WebVideoFullscreenManager.messages.in	2016-04-22 22:38:54 UTC (rev 199916)
+++ trunk/Source/WebKit2/WebProcess/cocoa/WebVideoFullscreenManager.messages.in	2016-04-22 22:41:49 UTC (rev 199917)
@@ -20,7 +20,7 @@
 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-#if PLATFORM(IOS) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
+#if (PLATFORM(IOS) HAVE(AVKIT)) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
 messages -> WebVideoFullscreenManager {
     RequestFullscreenMode(uint64_t contextId, WebCore::HTMLMediaElementEnums::VideoFullscreenMode videoFullscreenMode)
     DidSetupFullscreen(uint64_t contextId)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to