Title: [230160] trunk/Source/WebKit
Revision
230160
Author
m...@apple.com
Date
2018-04-02 09:45:06 -0700 (Mon, 02 Apr 2018)

Log Message

Fixed the build when BOOL is not bool.
<rdar://problem/39094484>

Reviewed by Jer Noble.

* UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
(-[WKFullScreenViewController videoControlsManagerDidChange]): Removed the write-only ivar
  _hasControlsManager, the assignment to which was causing the compiler error.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (230159 => 230160)


--- trunk/Source/WebKit/ChangeLog	2018-04-02 16:41:17 UTC (rev 230159)
+++ trunk/Source/WebKit/ChangeLog	2018-04-02 16:45:06 UTC (rev 230160)
@@ -1,3 +1,14 @@
+2018-04-02  Dan Bernstein  <m...@apple.com>
+
+        Fixed the build when BOOL is not bool.
+        <rdar://problem/39094484>
+
+        Reviewed by Jer Noble.
+
+        * UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
+        (-[WKFullScreenViewController videoControlsManagerDidChange]): Removed the write-only ivar
+          _hasControlsManager, the assignment to which was causing the compiler error.
+
 2018-04-02  Ryan Haddad  <ryanhad...@apple.com>
 
         Unreviewed build fix.

Modified: trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm (230159 => 230160)


--- trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm	2018-04-02 16:41:17 UTC (rev 230159)
+++ trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm	2018-04-02 16:45:06 UTC (rev 230160)
@@ -115,7 +115,6 @@
     RetainPtr<NSLayoutConstraint> _topConstraint;
     WebKit::FullscreenTouchSecheuristic _secheuristic;
     WKFullScreenViewControllerPlaybackSessionModelClient _playbackClient;
-    BOOL _hasControlsManager;
     CGFloat _nonZeroStatusBarHeight;
 }
 
@@ -195,7 +194,6 @@
     _playbackClient.setInterface(playbackSessionInterface);
 
     PlaybackSessionModel* playbackSessionModel = playbackSessionInterface ? playbackSessionInterface->playbackSessionModel() : nullptr;
-    _hasControlsManager = playbackSessionModel;
     self.playing = playbackSessionModel ? playbackSessionModel->isPlaying() : NO;
     [_pipButton setHidden:!playbackSessionModel];
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to