Title: [213112] trunk/Source/WebKit2
Revision
213112
Author
[email protected]
Date
2017-02-27 18:08:25 -0800 (Mon, 27 Feb 2017)

Log Message

WKPageIsPlayingVideoInEnhancedFullscreen availability mismatch
https://bugs.webkit.org/show_bug.cgi?id=168952

Reviewed by Dan Bernstein.

* UIProcess/API/C/mac/WKPagePrivateMac.h: TARGET_OS_MAC is not the right thing to
check, as it's true on both macOS and iOS.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (213111 => 213112)


--- trunk/Source/WebKit2/ChangeLog	2017-02-28 02:06:17 UTC (rev 213111)
+++ trunk/Source/WebKit2/ChangeLog	2017-02-28 02:08:25 UTC (rev 213112)
@@ -1,5 +1,15 @@
 2017-02-27  Alexey Proskuryakov  <[email protected]>
 
+        WKPageIsPlayingVideoInEnhancedFullscreen availability mismatch
+        https://bugs.webkit.org/show_bug.cgi?id=168952
+
+        Reviewed by Dan Bernstein.
+
+        * UIProcess/API/C/mac/WKPagePrivateMac.h: TARGET_OS_MAC is not the right thing to
+        check, as it's true on both macOS and iOS.
+
+2017-02-27  Alexey Proskuryakov  <[email protected]>
+
         Export WKPluginInformationBundleShortVersionKey
         https://bugs.webkit.org/show_bug.cgi?id=168951
 

Modified: trunk/Source/WebKit2/UIProcess/API/C/mac/WKPagePrivateMac.h (213111 => 213112)


--- trunk/Source/WebKit2/UIProcess/API/C/mac/WKPagePrivateMac.h	2017-02-28 02:06:17 UTC (rev 213111)
+++ trunk/Source/WebKit2/UIProcess/API/C/mac/WKPagePrivateMac.h	2017-02-28 02:08:25 UTC (rev 213112)
@@ -63,7 +63,7 @@
 
 WK_EXPORT bool WKPageIsURLKnownHSTSHost(WKPageRef page, WKURLRef url);
 
-#if TARGET_OS_MAC
+#if !TARGET_OS_IPHONE
 WK_EXPORT bool WKPageIsPlayingVideoInEnhancedFullscreen(WKPageRef page);
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to