Title: [215693] trunk/Source/WebKit2
Revision
215693
Author
aes...@apple.com
Date
2017-04-24 13:58:26 -0700 (Mon, 24 Apr 2017)

Log Message

Try to fix the 32-bit macOS build.

* UIProcess/Cocoa/WebViewImpl.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (215692 => 215693)


--- trunk/Source/WebKit2/ChangeLog	2017-04-24 20:48:17 UTC (rev 215692)
+++ trunk/Source/WebKit2/ChangeLog	2017-04-24 20:58:26 UTC (rev 215693)
@@ -1,5 +1,11 @@
 2017-04-24  Andy Estes  <aes...@apple.com>
 
+        Try to fix the 32-bit macOS build.
+
+        * UIProcess/Cocoa/WebViewImpl.mm:
+
+2017-04-24  Andy Estes  <aes...@apple.com>
+
         [macOS] Enable media selection button on AVTouchBarScrubber
         https://bugs.webkit.org/show_bug.cgi?id=171149
         <rdar://problem/29875010>

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm (215692 => 215693)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2017-04-24 20:48:17 UTC (rev 215692)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2017-04-24 20:58:26 UTC (rev 215693)
@@ -128,7 +128,7 @@
 - (BOOL)handleEventByKeyboardLayout:(NSEvent *)event;
 @end
 
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
+#if HAVE(TOUCH_BAR) && ENABLE(WEB_PLAYBACK_CONTROLS_MANAGER) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
 // FIXME: Remove this once -setCanShowMediaSelectionButton: is declared in an SDK used by Apple's buildbot.
 @interface AVTouchBarScrubber ()
 - (void)setCanShowMediaSelectionButton:(BOOL)canShowMediaSelectionButton;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to