Title: [283425] trunk/Source/WebKit
Revision
283425
Author
bfulg...@apple.com
Date
2021-10-01 16:52:11 -0700 (Fri, 01 Oct 2021)

Log Message

Remove reference to od-server-name from sandbox profiles
https://bugs.webkit.org/show_bug.cgi?id=231098
<rdar://problem/67766415>

Reviewed by Per Arne Vollan.

The code that used to read the od-server-name property was removed in Big Sur,
so WebKit no longer needs to allow reading that property in its sandbox profiles.

* GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (283424 => 283425)


--- trunk/Source/WebKit/ChangeLog	2021-10-01 23:48:39 UTC (rev 283424)
+++ trunk/Source/WebKit/ChangeLog	2021-10-01 23:52:11 UTC (rev 283425)
@@ -1,3 +1,17 @@
+2021-10-01  Brent Fulgham  <bfulg...@apple.com>
+
+        Remove reference to od-server-name from sandbox profiles 
+        https://bugs.webkit.org/show_bug.cgi?id=231098
+        <rdar://problem/67766415>
+
+        Reviewed by Per Arne Vollan.
+
+        The code that used to read the od-server-name property was removed in Big Sur,
+        so WebKit no longer needs to allow reading that property in its sandbox profiles.
+
+        * GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-10-01  Ian Anderson  <i...@apple.com>
 
         WebKitLegacy's module map files don't get installed

Modified: trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in (283424 => 283425)


--- trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in	2021-10-01 23:48:39 UTC (rev 283424)
+++ trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in	2021-10-01 23:52:11 UTC (rev 283425)
@@ -419,7 +419,9 @@
     (iokit-property "mt-device-id")
     (iokit-property "name")
     (iokit-property "nv-stats")
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
     (iokit-property "od-server-name") ;; Needed by LaunchServices
+#endif
     (iokit-property-regex #"^parser-(options|type)")
     (iokit-property-regex #"^pci(-aspm-default|debug)")
     (iokit-property "port-number")

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-10-01 23:48:39 UTC (rev 283424)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-10-01 23:52:11 UTC (rev 283425)
@@ -825,7 +825,9 @@
     (iokit-property "mt-device-id")
     (iokit-property "name")
     (iokit-property "nv-stats")
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
     (iokit-property "od-server-name") ;; Needed by LaunchServices
+#endif
     (iokit-property-regex #"^parser-(options|type)")
     (iokit-property-regex #"^pci(-aspm-default|debug)")
     (iokit-property "port-number")
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to