Title: [245898] trunk/Source/WTF
- Revision
- 245898
- Author
- [email protected]
- Date
- 2019-05-30 12:02:40 -0700 (Thu, 30 May 2019)
Log Message
Fix yet more deprecated uses of -[UIApplication interfaceOrientation]
https://bugs.webkit.org/show_bug.cgi?id=198381
<rdar://problem/51265846>
Reviewed by Wenson Hsieh.
r245267, r245272, and r245874 fixed many instances of this issue; this
change fixes the issue for tvOS.
* wtf/FeatureDefines.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (245897 => 245898)
--- trunk/Source/WTF/ChangeLog 2019-05-30 18:43:36 UTC (rev 245897)
+++ trunk/Source/WTF/ChangeLog 2019-05-30 19:02:40 UTC (rev 245898)
@@ -1,3 +1,16 @@
+2019-05-30 Keith Rollin <[email protected]>
+
+ Fix yet more deprecated uses of -[UIApplication interfaceOrientation]
+ https://bugs.webkit.org/show_bug.cgi?id=198381
+ <rdar://problem/51265846>
+
+ Reviewed by Wenson Hsieh.
+
+ r245267, r245272, and r245874 fixed many instances of this issue; this
+ change fixes the issue for tvOS.
+
+ * wtf/FeatureDefines.h:
+
2019-05-29 David Kilzer <[email protected]>
Clean up a few #include statements in WTF
Modified: trunk/Source/WTF/wtf/FeatureDefines.h (245897 => 245898)
--- trunk/Source/WTF/wtf/FeatureDefines.h 2019-05-30 18:43:36 UTC (rev 245897)
+++ trunk/Source/WTF/wtf/FeatureDefines.h 2019-05-30 19:02:40 UTC (rev 245898)
@@ -184,7 +184,7 @@
#endif
#if !defined(HAVE_UISCENE)
-#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
+#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
#define HAVE_UISCENE 1
#endif
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes