Title: [228229] trunk/Source/WebCore
Revision
228229
Author
[email protected]
Date
2018-02-07 10:13:52 -0800 (Wed, 07 Feb 2018)

Log Message

Removed the assertions from VideoFullscreenInterfaceAVKit.mm temporarily to stop the resulting crashes during debugging.
https://bugs.webkit.org/show_bug.cgi?id=182527

Unreviewed build fix.

* platform/ios/VideoFullscreenInterfaceAVKit.mm:
(VideoFullscreenInterfaceAVKit::exitFullscreen):
(VideoFullscreenInterfaceAVKit::cleanupFullscreen):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (228228 => 228229)


--- trunk/Source/WebCore/ChangeLog	2018-02-07 17:18:40 UTC (rev 228228)
+++ trunk/Source/WebCore/ChangeLog	2018-02-07 18:13:52 UTC (rev 228229)
@@ -1,3 +1,14 @@
+2018-02-06  Matt Lewis  <[email protected]>
+
+        Removed the assertions from VideoFullscreenInterfaceAVKit.mm temporarily to stop the resulting crashes during debugging.
+        https://bugs.webkit.org/show_bug.cgi?id=182527
+
+        Unreviewed build fix.
+
+        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+        (VideoFullscreenInterfaceAVKit::exitFullscreen):
+        (VideoFullscreenInterfaceAVKit::cleanupFullscreen):
+
 2018-02-07  Zalan Bujtas  <[email protected]>
 
         [RenderTreeBuilder] Move RenderBlock::removeLeftoverAnonymousBlock to RenderTreeBuilder

Modified: trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm (228228 => 228229)


--- trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-02-07 17:18:40 UTC (rev 228228)
+++ trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-02-07 18:13:52 UTC (rev 228229)
@@ -776,7 +776,6 @@
         [m_playerViewController exitFullScreenAnimated:YES completionHandler:[protectedThis = makeRefPtr(this), this] (BOOL success, NSError* error) mutable {
             if (!success) {
                 WTFLogAlways("-[AVPlayerViewController exitFullScreenAnimated:completionHandler:] failed with error %s", [[error localizedDescription] UTF8String]);
-                ASSERT_NOT_REACHED();
             }
 
             m_exitCompleted = true;
@@ -814,7 +813,6 @@
         [m_playerViewController exitFullScreenAnimated:NO completionHandler:[] (BOOL success, NSError* error) {
             if (!success) {
                 WTFLogAlways("-[AVPlayerViewController exitFullScreenAnimated:completionHandler:] failed with error %s", [[error localizedDescription] UTF8String]);
-                ASSERT_NOT_REACHED();
             }
         }];
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to