Title: [285688] trunk/Source/WebKit
Revision
285688
Author
[email protected]
Date
2021-11-11 16:00:54 -0800 (Thu, 11 Nov 2021)

Log Message

[macOS] Add required methods to IOKit message filter
https://bugs.webkit.org/show_bug.cgi?id=233012
<rdar://85307256>

Reviewed by Brent Fulgham.

Add required methods to IOKit message filter on macOS.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (285687 => 285688)


--- trunk/Source/WebKit/ChangeLog	2021-11-11 23:58:13 UTC (rev 285687)
+++ trunk/Source/WebKit/ChangeLog	2021-11-12 00:00:54 UTC (rev 285688)
@@ -1,3 +1,15 @@
+2021-11-11  Per Arne  <[email protected]>
+
+        [macOS] Add required methods to IOKit message filter
+        https://bugs.webkit.org/show_bug.cgi?id=233012
+        <rdar://85307256>
+
+        Reviewed by Brent Fulgham.
+
+        Add required methods to IOKit message filter on macOS.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-11-11  Wenson Hsieh  <[email protected]>
 
         Move image overlay code out of HTMLElement and into a separate helper file

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (285687 => 285688)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-11-11 23:58:13 UTC (rev 285687)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-11-12 00:00:54 UTC (rev 285688)
@@ -131,6 +131,9 @@
             (iokit-method-number
                 0
                 47
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120300
+                48
+#endif
             )
 #endif
         )
@@ -163,6 +166,24 @@
                 30
                 31
                 40
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120300
+                41
+                43
+                49
+                257
+                258
+                259
+                260
+                261
+                262
+                263
+                264
+                265
+                266
+                268
+                269
+                513
+#else
                 42
                 48
                 256
@@ -178,6 +199,7 @@
                 267
                 268
                 512
+#endif
             )
 #endif
         )
@@ -185,9 +207,15 @@
         (if (equal? (param "CPU") "arm64")
             (allow iokit-external-method
                 (iokit-method-number
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120300
+                    44
+                    45
+                    47
+#else
                     43
                     44
                     46
+#endif
                 )
             )
         )
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to