Changeset 228229 in webkit


Ignore:
Timestamp:
Feb 7, 2018 10:13:52 AM (6 years ago)
Author:
Matt Lewis
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r228224 r228229  
     12018-02-06  Matt Lewis  <jlewis3@apple.com>
     2
     3        Removed the assertions from VideoFullscreenInterfaceAVKit.mm temporarily to stop the resulting crashes during debugging.
     4        https://bugs.webkit.org/show_bug.cgi?id=182527
     5
     6        Unreviewed build fix.
     7
     8        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
     9        (VideoFullscreenInterfaceAVKit::exitFullscreen):
     10        (VideoFullscreenInterfaceAVKit::cleanupFullscreen):
     11
    1122018-02-07  Zalan Bujtas  <zalan@apple.com>
    213
  • trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm

    r228119 r228229  
    777777            if (!success) {
    778778                WTFLogAlways("-[AVPlayerViewController exitFullScreenAnimated:completionHandler:] failed with error %s", [[error localizedDescription] UTF8String]);
    779                 ASSERT_NOT_REACHED();
    780779            }
    781780
     
    815814            if (!success) {
    816815                WTFLogAlways("-[AVPlayerViewController exitFullScreenAnimated:completionHandler:] failed with error %s", [[error localizedDescription] UTF8String]);
    817                 ASSERT_NOT_REACHED();
    818816            }
    819817        }];
Note: See TracChangeset for help on using the changeset viewer.