Title: [192971] trunk/Source/WebCore
Revision
192971
Author
jer.no...@apple.com
Date
2015-12-02 15:01:23 -0800 (Wed, 02 Dec 2015)

Log Message

[iOS] Abrupt transition between Fullscreen -> PiP
https://bugs.webkit.org/show_bug.cgi?id=151719

Reviewed by Eric Carlson.

Follow-up to r192922: When moving from inline -> PiP, don't forget to hide the fullscreen
window once the PiP transition completes.

* platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
(WebVideoFullscreenInterfaceAVKit::didStartPictureInPicture):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (192970 => 192971)


--- trunk/Source/WebCore/ChangeLog	2015-12-02 22:52:54 UTC (rev 192970)
+++ trunk/Source/WebCore/ChangeLog	2015-12-02 23:01:23 UTC (rev 192971)
@@ -1,3 +1,16 @@
+2015-12-02  Jer Noble  <jer.no...@apple.com>
+
+        [iOS] Abrupt transition between Fullscreen -> PiP
+        https://bugs.webkit.org/show_bug.cgi?id=151719
+
+        Reviewed by Eric Carlson.
+
+        Follow-up to r192922: When moving from inline -> PiP, don't forget to hide the fullscreen
+        window once the PiP transition completes.
+
+        * platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
+        (WebVideoFullscreenInterfaceAVKit::didStartPictureInPicture):
+
 2015-12-02  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r192955.

Modified: trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm (192970 => 192971)


--- trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2015-12-02 22:52:54 UTC (rev 192970)
+++ trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2015-12-02 23:01:23 UTC (rev 192971)
@@ -1334,6 +1334,9 @@
             [m_window setHidden:YES];
             [[m_playerViewController view] setHidden:YES];
         }];
+    } else {
+        [m_window setHidden:YES];
+        [[m_playerViewController view] setHidden:YES];
     }
 
     if (m_fullscreenChangeObserver)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to