Title: [244564] trunk/Source/WebKit
- Revision
- 244564
- Author
- [email protected]
- Date
- 2019-04-23 13:47:43 -0700 (Tue, 23 Apr 2019)
Log Message
Build fix after r244545.
Patch by Remy Demarest <[email protected]> on 2019-04-23
Reviewed by Tim Horton.
* Platform/spi/mac/AppKitSPI.h:
The SPI was an IPI in High Sierra.
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (244563 => 244564)
--- trunk/Source/WebKit/ChangeLog 2019-04-23 20:40:58 UTC (rev 244563)
+++ trunk/Source/WebKit/ChangeLog 2019-04-23 20:47:43 UTC (rev 244564)
@@ -1,3 +1,12 @@
+2019-04-23 Remy Demarest <[email protected]>
+
+ Build fix after r244545.
+
+ Reviewed by Tim Horton.
+
+ * Platform/spi/mac/AppKitSPI.h:
+ The SPI was an IPI in High Sierra.
+
2019-04-23 Per Arne Vollan <[email protected]>
[iOS] Input field on ddg.gg is auto focused when url is entered with the software keyboard
Modified: trunk/Source/WebKit/Platform/spi/mac/AppKitSPI.h (244563 => 244564)
--- trunk/Source/WebKit/Platform/spi/mac/AppKitSPI.h 2019-04-23 20:40:58 UTC (rev 244563)
+++ trunk/Source/WebKit/Platform/spi/mac/AppKitSPI.h 2019-04-23 20:47:43 UTC (rev 244564)
@@ -47,9 +47,11 @@
- (void)setInspectorBar:(NSInspectorBar *)bar;
@end
+#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101400
@interface NSWindow (FullScreenSupport)
@property CGFloat titlebarAlphaValue;
@end
+#endif
#endif
@@ -56,3 +58,9 @@
@interface NSInspectorBar (IPI)
- (void)_update;
@end
+
+#if __MAC_OS_X_VERSION_MAX_ALLOWED < 101400
+@interface NSWindow (IPI)
+@property CGFloat titlebarAlphaValue;
+@end
+#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes