Title: [193359] branches/safari-601.1.46-branch/Source/WebCore
Revision
193359
Author
matthew_han...@apple.com
Date
2015-12-03 11:41:26 -0800 (Thu, 03 Dec 2015)

Log Message

Merge r192971. rdar://problem/23726466

Modified Paths

Diff

Modified: branches/safari-601.1.46-branch/Source/WebCore/ChangeLog (193358 => 193359)


--- branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2015-12-03 19:41:23 UTC (rev 193358)
+++ branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2015-12-03 19:41:26 UTC (rev 193359)
@@ -1,5 +1,22 @@
 2015-12-02  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r192971. rdar://problem/23726466
+
+    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  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r192922. rdar://problem/23726466
 
     2015-12-01  Jer Noble  <jer.no...@apple.com>

Modified: branches/safari-601.1.46-branch/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm (193358 => 193359)


--- branches/safari-601.1.46-branch/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2015-12-03 19:41:23 UTC (rev 193358)
+++ branches/safari-601.1.46-branch/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2015-12-03 19:41:26 UTC (rev 193359)
@@ -1327,6 +1327,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