Title: [233972] branches/safari-606-branch/Source/WebCore
Revision
233972
Author
[email protected]
Date
2018-07-18 19:01:09 -0700 (Wed, 18 Jul 2018)

Log Message

Cherry-pick r233930. rdar://problem/42354941

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

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@233930 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606-branch/Source/WebCore/ChangeLog (233971 => 233972)


--- branches/safari-606-branch/Source/WebCore/ChangeLog	2018-07-19 02:01:06 UTC (rev 233971)
+++ branches/safari-606-branch/Source/WebCore/ChangeLog	2018-07-19 02:01:09 UTC (rev 233972)
@@ -1,5 +1,23 @@
 2018-07-18  Babak Shafiei  <[email protected]>
 
+        Cherry-pick r233930. rdar://problem/42354941
+
+    Unreviewed build fix after r233926; BOOL !== bool.
+    
+    * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+    (VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground const):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@233930 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-07-18  Jer Noble  <[email protected]>
+
+            Unreviewed build fix after r233926; BOOL !== bool.
+
+            * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+            (VideoFullscreenInterfaceAVKit::pictureInPictureWasStartedWhenEnteringBackground const):
+
+2018-07-18  Babak Shafiei  <[email protected]>
+
         Cherry-pick r233926. rdar://problem/42354941
 
     PiP from Element Fullscreen should match AVKit's behavior

Modified: branches/safari-606-branch/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm (233971 => 233972)


--- branches/safari-606-branch/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-19 02:01:06 UTC (rev 233971)
+++ branches/safari-606-branch/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-19 02:01:09 UTC (rev 233972)
@@ -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