Title: [228119] trunk/Source/WebCore
Revision
228119
Author
wilan...@apple.com
Date
2018-02-05 13:41:43 -0800 (Mon, 05 Feb 2018)

Log Message

Build fix for r228115, simple naming issue succeeded —> success.
https://bugs.webkit.org/show_bug.cgi?id=182507
<rdar://problem/37248566>

Reviewed by Eric Carlson.

No new tests. Build fix.

* platform/ios/VideoFullscreenInterfaceAVKit.mm:
(VideoFullscreenInterfaceAVKit::enterFullscreenHandler):
    succeeded —> success

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (228118 => 228119)


--- trunk/Source/WebCore/ChangeLog	2018-02-05 21:36:18 UTC (rev 228118)
+++ trunk/Source/WebCore/ChangeLog	2018-02-05 21:41:43 UTC (rev 228119)
@@ -1,3 +1,17 @@
+2018-02-05  John Wilander  <wilan...@apple.com>
+
+        Build fix for r228115, simple naming issue succeeded —> success.
+        https://bugs.webkit.org/show_bug.cgi?id=182507
+        <rdar://problem/37248566>
+
+        Reviewed by Eric Carlson.
+
+        No new tests. Build fix.
+
+        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+        (VideoFullscreenInterfaceAVKit::enterFullscreenHandler):
+            succeeded —> success
+
 2018-02-05  Matt Lewis  <jlew...@apple.com>
 
         Unreviewed, rolling out r228086.

Modified: trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm (228118 => 228119)


--- trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-02-05 21:36:18 UTC (rev 228118)
+++ trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2018-02-05 21:41:43 UTC (rev 228119)
@@ -1586,7 +1586,7 @@
 
 void VideoFullscreenInterfaceAVKit::enterFullscreenHandler(BOOL success, NSError* error)
 {
-    if (!succeeded) {
+    if (!success) {
         WTFLogAlways("-[AVPlayerViewController enterFullScreenAnimated:completionHandler:] failed with error %s", [[error localizedDescription] UTF8String]);
         ASSERT_NOT_REACHED();
         m_videoFullscreenModel->requestFullscreenMode(HTMLMediaElementEnums::VideoFullscreenModeNone, YES);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to