Changeset 258496 in webkit


Ignore:
Timestamp:
Mar 16, 2020 8:26:05 AM (4 years ago)
Author:
pvollan@apple.com
Message:

[iOS] Add telemetry for message filtering
https://bugs.webkit.org/show_bug.cgi?id=208925
<rdar://problem/58885485>

Reviewed by Darin Adler.

On iOS, add telemetry for message filtering in the WebContent process' sandbox.

No new tests, no behavior change.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r258495 r258496  
     12020-03-16  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [iOS] Add telemetry for message filtering
     4        https://bugs.webkit.org/show_bug.cgi?id=208925
     5        <rdar://problem/58885485>
     6
     7        Reviewed by Darin Adler.
     8
     9        On iOS, add telemetry for message filtering in the WebContent process' sandbox.
     10
     11        No new tests, no behavior change.
     12
     13        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     14
    1152020-03-16  Per Arne Vollan  <pvollan@apple.com>
    216
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r258456 r258496  
    10621062    )
    10631063)
     1064
     1065(when (defined? 'mach-bootstrap)
     1066    (allow mach-bootstrap
     1067        (apply-message-filter
     1068            (allow xpc-message-send (with report) (with telemetry))
     1069            (allow xpc-message-send (message-number 206))
     1070            (allow xpc-message-send (message-number 207))
     1071            (allow xpc-message-send (message-number 711))
     1072            (allow xpc-message-send (message-number 712))
     1073            (allow xpc-message-send (message-number 718))
     1074            (allow xpc-message-send (message-number 800))
     1075            (allow xpc-message-send (message-number 803))
     1076            (allow xpc-message-send (message-number 804))
     1077            (allow xpc-message-send (message-number 805))
     1078        )
     1079    )
     1080)
Note: See TracChangeset for help on using the changeset viewer.