Changeset 269890 in webkit


Ignore:
Timestamp:
Nov 16, 2020 7:05:46 PM (3 years ago)
Author:
Brent Fulgham
Message:

[macOS] Remove access to the unused AppleIntelMEUserClient IOKit class
https://bugs.webkit.org/show_bug.cgi?id=219012
<rdar://problem/70462796>

Reviewed by Eric Carlson.

Although we originally thought this was needed for H.264 decoding, testing shows that
this class is never used in WebKit flows, and is not needed. We should remove it.

  • 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

    r269889 r269890  
     12020-11-16  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [macOS] Remove access to the unused AppleIntelMEUserClient IOKit class
     4        https://bugs.webkit.org/show_bug.cgi?id=219012
     5        <rdar://problem/70462796>
     6
     7        Reviewed by Eric Carlson.
     8
     9        Although we originally thought this was needed for H.264 decoding, testing shows that
     10        this class is never used in WebKit flows, and is not needed. We should remove it.
     11
     12        * GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
     13        * WebProcess/com.apple.WebProcess.sb.in:
     14
    1152020-11-16  Per Arne Vollan  <pvollan@apple.com>
    216
  • trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in

    r269877 r269890  
    120120    ;; H.264 Acceleration
    121121    (allow iokit-open
     122#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101500
    122123        (iokit-registry-entry-class "AppleIntelMEUserClient")
     124#endif
    123125        (iokit-registry-entry-class "AppleSNBFBUserClient"))
    124126    ;; QuartzCore
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r269889 r269890  
    173173#endif
    174174    ;; H.264 Acceleration
     175#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101500
    175176    (allow iokit-open
    176177        (iokit-registry-entry-class "AppleIntelMEUserClient")
     
    188189#endif
    189190    )
     191#endif
    190192    (allow iokit-open
    191193        (iokit-registry-entry-class "AppleSNBFBUserClient")
Note: See TracChangeset for help on using the changeset viewer.