Changeset 280644 in webkit
- Timestamp:
- Aug 4, 2021, 11:28:50 AM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/com.apple.WebProcess.sb.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r280639 r280644 1 2021-08-04 Per Arne <pvollan@apple.com> 2 3 [macOS] Update message filters 4 https://bugs.webkit.org/show_bug.cgi?id=228773 5 <rdar://problem/81514311> 6 7 Reviewed by Brent Fulgham. 8 9 Update message filters with enforcement on macOS based on telemetry. 10 11 * WebProcess/com.apple.WebProcess.sb.in: 12 1 13 2021-08-04 Said Abou-Hallawa <said@apple.com> 2 14 -
trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in
r280345 r280644 241 241 (define (AppleAVDUserClientMessageFilter) 242 242 (apply-message-filter 243 ( allow(with telemetry) (with message "AppleAVDUserClient")243 (deny (with telemetry) (with message "AppleAVDUserClient") 244 244 iokit-async-external-method 245 245 iokit-external-method … … 251 251 (define (IOSurfaceAcceleratorClientMessageFilter) 252 252 (apply-message-filter 253 ( allow(with telemetry) (with message "IOSurfaceAcceleratorClient")253 (deny (with telemetry) (with message "IOSurfaceAcceleratorClient") 254 254 iokit-async-external-method 255 iokit-external-method256 255 iokit-external-trap 256 ) 257 (allow iokit-external-method 258 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000 259 (iokit-method-number 260 1 261 ) 262 #endif 257 263 ) 258 264 ) … … 261 267 (define (IOMobileFramebufferUserClientMessageFilter) 262 268 (apply-message-filter 263 ( allow (with telemetry-backtrace) (with message "IOMobileFramebufferUserClient")269 (deny (with telemetry) (with message "IOMobileFramebufferUserClient") 264 270 iokit-async-external-method 265 iokit-external-method266 271 iokit-external-trap 272 ) 273 (allow (with telemetry-backtrace) iokit-external-method 274 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000 275 (iokit-method-number 276 8 277 28 278 ) 279 #endif 267 280 ) 268 281 )
Note:
See TracChangeset
for help on using the changeset viewer.