Title: [294272] trunk/Source/WTF
Revision
294272
Author
bfulg...@apple.com
Date
2022-05-16 15:43:21 -0700 (Mon, 16 May 2022)

Log Message

Correct erroneous guard in Platform file
https://bugs.webkit.org/show_bug.cgi?id=240469
<rdar://problem/93358873>

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (294271 => 294272)


--- trunk/Source/WTF/ChangeLog	2022-05-16 22:35:27 UTC (rev 294271)
+++ trunk/Source/WTF/ChangeLog	2022-05-16 22:43:21 UTC (rev 294272)
@@ -1,5 +1,17 @@
 2022-05-16  Brent Fulgham  <bfulg...@apple.com>
 
+        Correct erroneous guard in Platform file
+        https://bugs.webkit.org/show_bug.cgi?id=240469
+        <rdar://problem/93358873>
+
+        Reviewed by Geoff Garen.
+
+        SSIA.
+
+        * wtf/PlatformEnableCocoa.h:
+
+2022-05-16  Brent Fulgham  <bfulg...@apple.com>
+
         Remove abandoned WebKitAdditionsFeature1 flag (240462)
         https://bugs.webkit.org/show_bug.cgi?id=240462
         <rdar://93353298>

Modified: trunk/Source/WTF/wtf/PlatformEnableCocoa.h (294271 => 294272)


--- trunk/Source/WTF/wtf/PlatformEnableCocoa.h	2022-05-16 22:35:27 UTC (rev 294271)
+++ trunk/Source/WTF/wtf/PlatformEnableCocoa.h	2022-05-16 22:43:21 UTC (rev 294272)
@@ -441,7 +441,7 @@
 #define ENABLE_NON_VISIBLE_WEBPROCESS_MEMORY_CLEANUP_TIMER 1
 #endif
 
-#if !defined(ENABLE_NOTIFICATIONS) && (PLATFORM(MAC) || PLATFORM(IOS))
+#if !defined(ENABLE_NOTIFICATIONS) && PLATFORM(MAC)
 #define ENABLE_NOTIFICATIONS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to