Title: [285264] trunk/Source/WebKit
Revision
285264
Author
[email protected]
Date
2021-11-04 09:28:50 -0700 (Thu, 04 Nov 2021)

Log Message

[iOS] Update IOKit message filters for later iOS releases
https://bugs.webkit.org/show_bug.cgi?id=232681
<rdar://problem/78779102>

Reviewed by Per Arne Vollan.

Now that method ordinals have stabilized, we can re-enable message filtering
in our trunk builds.

* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (285263 => 285264)


--- trunk/Source/WebKit/ChangeLog	2021-11-04 16:28:02 UTC (rev 285263)
+++ trunk/Source/WebKit/ChangeLog	2021-11-04 16:28:50 UTC (rev 285264)
@@ -1,3 +1,16 @@
+2021-11-04  Brent Fulgham  <[email protected]>
+
+        [iOS] Update IOKit message filters for later iOS releases
+        https://bugs.webkit.org/show_bug.cgi?id=232681
+        <rdar://problem/78779102>
+
+        Reviewed by Per Arne Vollan.
+
+        Now that method ordinals have stabilized, we can re-enable message filtering
+        in our trunk builds.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in:
+
 2021-11-04  Commit Queue  <[email protected]>
 
         Unreviewed, reverting r285228.

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in (285263 => 285264)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in	2021-11-04 16:28:02 UTC (rev 285263)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in	2021-11-04 16:28:50 UTC (rev 285264)
@@ -262,14 +262,18 @@
                     iokit-external-method
                 )
                 (allow iokit-async-external-method
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 150500
+#if PLATFORM(IOS)
                     (iokit-method-number
+#if __IPHONE_OS_VERSION_MIN_REQUIRED < 150500
                         43
+#else
+                        44
+#endif
                     )
 #endif
                 )
                 (allow iokit-external-method
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 150500
+#if PLATFORM(IOS)
                     (iokit-method-number
                         0
                         2
@@ -289,6 +293,7 @@
                         25
                         26
                         27
+#if __IPHONE_OS_VERSION_MIN_REQUIRED < 150500
                         36
                         38
                         39
@@ -295,6 +300,14 @@
                         40
                         42
                         44
+#else
+                        37
+                        39
+                        40
+                        41
+                        43
+                        45
+#endif
                     )
 #endif
                 )
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to