Title: [234297] branches/safari-606-branch/Source/WebCore
Revision
234297
Author
[email protected]
Date
2018-07-26 23:02:00 -0700 (Thu, 26 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 (234296 => 234297)


--- branches/safari-606-branch/Source/WebCore/ChangeLog	2018-07-27 06:01:57 UTC (rev 234296)
+++ branches/safari-606-branch/Source/WebCore/ChangeLog	2018-07-27 06:02:00 UTC (rev 234297)
@@ -1,5 +1,23 @@
 2018-07-26  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-26  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 (234296 => 234297)


--- branches/safari-606-branch/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-27 06:01:57 UTC (rev 234296)
+++ branches/safari-606-branch/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-07-27 06:02:00 UTC (rev 234297)
@@ -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