Title: [199903] trunk/Source/WebKit2
Revision
199903
Author
ryanhad...@apple.com
Date
2016-04-22 14:07:45 -0700 (Fri, 22 Apr 2016)

Log Message

Take 2 for fixing builds that do not support AVKit

Unreviewed build fix.

* UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h:
* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::resetState):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (199902 => 199903)


--- trunk/Source/WebKit2/ChangeLog	2016-04-22 21:07:42 UTC (rev 199902)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-22 21:07:45 UTC (rev 199903)
@@ -1,3 +1,13 @@
+2016-04-22  Ryan Haddad  <ryanhad...@apple.com>
+
+        Take 2 for fixing builds that do not support AVKit
+
+        Unreviewed build fix.
+
+        * UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h:
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::resetState):
+
 2016-04-22  Anders Carlsson  <ander...@apple.com>
 
         WKWebView WebSQL is not enabled

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h (199902 => 199903)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h	2016-04-22 21:07:42 UTC (rev 199902)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h	2016-04-22 21:07:45 UTC (rev 199903)
@@ -26,7 +26,7 @@
 #ifndef WebVideoFullscreenManagerProxy_h
 #define WebVideoFullscreenManagerProxy_h
 
-#if PLATFORM(IOS) && HAVE(AVKIT) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
+#if (PLATFORM(IOS) && HAVE(AVKIT)) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
 
 #include "MessageReceiver.h"
 #include <WebCore/GraphicsLayer.h>

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (199902 => 199903)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-04-22 21:07:42 UTC (rev 199902)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-04-22 21:07:45 UTC (rev 199903)
@@ -5082,7 +5082,7 @@
 
     m_visibleScrollerThumbRect = IntRect();
 
-#if PLATFORM(IOS) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
+#if (PLATFORM(IOS) && HAVE(AVKIT)) || (PLATFORM(MAC) && ENABLE(VIDEO_PRESENTATION_MODE))
     if (m_playbackSessionManager) {
         m_playbackSessionManager->invalidate();
         m_playbackSessionManager = nullptr;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to