Title: [280445] trunk/Source/WTF
Revision
280445
Author
eric.carl...@apple.com
Date
2021-07-29 13:43:17 -0700 (Thu, 29 Jul 2021)

Log Message

[iOS] Don't set capture attribution dynamically in the simulator
https://bugs.webkit.org/show_bug.cgi?id=228596
rdar://81176531

Reviewed by Jer Noble.

* wtf/PlatformHave.h: Don't define HAVE_SYSTEM_STATUS for the simulator.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (280444 => 280445)


--- trunk/Source/WTF/ChangeLog	2021-07-29 20:17:35 UTC (rev 280444)
+++ trunk/Source/WTF/ChangeLog	2021-07-29 20:43:17 UTC (rev 280445)
@@ -1,3 +1,13 @@
+2021-07-29  Eric Carlson  <eric.carl...@apple.com>
+
+        [iOS] Don't set capture attribution dynamically in the simulator
+        https://bugs.webkit.org/show_bug.cgi?id=228596
+        rdar://81176531
+
+        Reviewed by Jer Noble.
+
+        * wtf/PlatformHave.h: Don't define HAVE_SYSTEM_STATUS for the simulator.
+
 2021-07-29  Kate Cheney  <katherine_che...@apple.com>
 
         GetIdentifierStringForPreferredVoiceInListWithLocale() is deprecated in Monterey

Modified: trunk/Source/WTF/wtf/PlatformHave.h (280444 => 280445)


--- trunk/Source/WTF/wtf/PlatformHave.h	2021-07-29 20:17:35 UTC (rev 280444)
+++ trunk/Source/WTF/wtf/PlatformHave.h	2021-07-29 20:43:17 UTC (rev 280445)
@@ -1116,6 +1116,6 @@
 #define HAVE_AVSAMPLEBUFFERRENDERSYNCHRONIZER_RATEATHOSTTIME 1
 #endif
 
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
+#if (PLATFORM(IOS) && !PLATFORM(IOS_FAMILY_SIMULATOR)) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
 #define HAVE_SYSTEM_STATUS 1
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to