Title: [262805] trunk/Source/WTF
Revision
262805
Author
[email protected]
Date
2020-06-09 12:57:16 -0700 (Tue, 09 Jun 2020)

Log Message

All platforms should enable CFPrefs read only mode in the WebContent process
https://bugs.webkit.org/show_bug.cgi?id=212910

Reviewed by Tim Horton.

In https://bugs.webkit.org/show_bug.cgi?id=212411, CFPrefs read only mode was adopted, but not all platforms were included.

* wtf/PlatformHave.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (262804 => 262805)


--- trunk/Source/WTF/ChangeLog	2020-06-09 19:53:52 UTC (rev 262804)
+++ trunk/Source/WTF/ChangeLog	2020-06-09 19:57:16 UTC (rev 262805)
@@ -1,3 +1,14 @@
+2020-06-09  Per Arne Vollan  <[email protected]>
+
+        All platforms should enable CFPrefs read only mode in the WebContent process
+        https://bugs.webkit.org/show_bug.cgi?id=212910
+
+        Reviewed by Tim Horton.
+
+        In https://bugs.webkit.org/show_bug.cgi?id=212411, CFPrefs read only mode was adopted, but not all platforms were included.
+
+        * wtf/PlatformHave.h:
+
 2020-06-09  Wenson Hsieh  <[email protected]>
 
         REGRESSION (r260820): [macCatalyst] Web process crashes when uploading a file

Modified: trunk/Source/WTF/wtf/PlatformHave.h (262804 => 262805)


--- trunk/Source/WTF/wtf/PlatformHave.h	2020-06-09 19:53:52 UTC (rev 262804)
+++ trunk/Source/WTF/wtf/PlatformHave.h	2020-06-09 19:57:16 UTC (rev 262805)
@@ -646,7 +646,7 @@
 #endif
 
 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101600) \
-    || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) \
+    || ((PLATFORM(IOS) || PLATFORM(MACCATALYST)) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) \
     || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 70000) \
     || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 140000)
 #define HAVE_CF_PREFS_SET_READ_ONLY 1
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to