Title: [245874] trunk/Source/WTF
Revision
245874
Author
[email protected]
Date
2019-05-29 16:01:54 -0700 (Wed, 29 May 2019)

Log Message

Followup to r245267 and r245272: fix even more deprecated uses of -[UIApplication interfaceOrientation]
https://bugs.webkit.org/show_bug.cgi?id=198348
<rdar://problem/51234077>

Reviewed by Wenson Hsieh.

r245267 and r245272 fixed many instances of this issue; this change
fixes the issue for watchOS.

* wtf/FeatureDefines.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (245873 => 245874)


--- trunk/Source/WTF/ChangeLog	2019-05-29 22:21:08 UTC (rev 245873)
+++ trunk/Source/WTF/ChangeLog	2019-05-29 23:01:54 UTC (rev 245874)
@@ -1,3 +1,16 @@
+2019-05-29  Keith Rollin  <[email protected]>
+
+        Followup to r245267 and r245272: fix even more deprecated uses of -[UIApplication interfaceOrientation]
+        https://bugs.webkit.org/show_bug.cgi?id=198348
+        <rdar://problem/51234077>
+
+        Reviewed by Wenson Hsieh.
+
+        r245267 and r245272 fixed many instances of this issue; this change
+        fixes the issue for watchOS.
+
+        * wtf/FeatureDefines.h:
+
 2019-05-29  David Kilzer  <[email protected]>
 
         IndexedDatabase Server thread in com.apple.WebKit.Networking process leaks objects into an autoreleasePool that's never cleared

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (245873 => 245874)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2019-05-29 22:21:08 UTC (rev 245873)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2019-05-29 23:01:54 UTC (rev 245874)
@@ -184,7 +184,7 @@
 #endif
 
 #if !defined(HAVE_UISCENE)
-#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000
+#if (__IPHONE_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

Reply via email to