Title: [233930] trunk/Source/WebCore
Revision
233930
Author
[email protected]
Date
2018-07-18 14:17:07 -0700 (Wed, 18 Jul 2018)

Log Message

Unreviewed build fix after r233926; BOOL !== bool.

* platform/ios/VideoFullscreenInterfaceAVKit.mm:
(VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (233929 => 233930)


--- trunk/Source/WebCore/ChangeLog	2018-07-18 21:15:41 UTC (rev 233929)
+++ trunk/Source/WebCore/ChangeLog	2018-07-18 21:17:07 UTC (rev 233930)
@@ -1,5 +1,12 @@
 2018-07-18  Jer Noble  <[email protected]>
 
+        Unreviewed build fix after r233926; BOOL !== bool.
+
+        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+        (VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground const):
+
+2018-07-18  Jer Noble  <[email protected]>
+
         PiP from Element Fullscreen should match AVKit's behavior
         https://bugs.webkit.org/show_bug.cgi?id=187623
 

Modified: trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm (233929 => 233930)


--- trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-18 21:15:41 UTC (rev 233929)
+++ trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-18 21:17:07 UTC (rev 233930)
@@ -797,7 +797,7 @@
     [m_playerLayerView setHidden:enabled];
 }
 
-BOOL VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground() const
+bool VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground() const
 {
     return [m_playerViewController pictureInPictureWasStartedWhenEnteringBackground];
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to