⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 283425 in webkit


Ignore:
Timestamp:
Oct 1, 2021, 4:52:11 PM (5 years ago)
Author:
Brent Fulgham
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:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r283403 r283425  
     12021-10-01  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Remove reference to od-server-name from sandbox profiles
     4        https://bugs.webkit.org/show_bug.cgi?id=231098
     5        <rdar://problem/67766415>
     6
     7        Reviewed by Per Arne Vollan.
     8
     9        The code that used to read the od-server-name property was removed in Big Sur,
     10        so WebKit no longer needs to allow reading that property in its sandbox profiles.
     11
     12        * GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
     13        * WebProcess/com.apple.WebProcess.sb.in:
     14
    1152021-10-01  Ian Anderson  <iana@apple.com>
    216
  • trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in

    r283396 r283425  
    420420    (iokit-property "name")
    421421    (iokit-property "nv-stats")
     422#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    422423    (iokit-property "od-server-name") ;; Needed by LaunchServices
     424#endif
    423425    (iokit-property-regex #"^parser-(options|type)")
    424426    (iokit-property-regex #"^pci(-aspm-default|debug)")
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r283396 r283425  
    826826    (iokit-property "name")
    827827    (iokit-property "nv-stats")
     828#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    828829    (iokit-property "od-server-name") ;; Needed by LaunchServices
     830#endif
    829831    (iokit-property-regex #"^parser-(options|type)")
    830832    (iokit-property-regex #"^pci(-aspm-default|debug)")
Note: See TracChangeset for help on using the changeset viewer.