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

Changeset 267405 in webkit


Ignore:
Timestamp:
Sep 22, 2020, 7:54:16 AM (6 years ago)
Author:
pvollan@apple.com
Message:

[macOS] Start collecting telemetry from message filtering
<https://bugs.webkit.org/show_bug.cgi?id=216803>

Reviewed by Darin Adler.

Start collecting telemetry for message filtering in the WebContent sandbox on macOS.

  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r267403 r267405  
     12020-09-22  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [macOS] Start collecting telemetry from message filtering
     4        <https://bugs.webkit.org/show_bug.cgi?id=216803>
     5
     6        Reviewed by Darin Adler.
     7
     8        Start collecting telemetry for message filtering in the WebContent sandbox on macOS.
     9
     10        * WebProcess/com.apple.WebProcess.sb.in:
     11
    1122020-09-22  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r266301 r267405  
    11951195#include <WebKitAdditions/WebContentSandboxAdditionsMac.sb>
    11961196#endif
     1197
     1198(when (defined? 'mach-kernel-endpoint)
     1199    (allow mach-kernel-endpoint
     1200        (apply-message-filter
     1201            (allow mach-message-send (with telemetry))
     1202        )
     1203    )
     1204)
     1205
     1206(when (defined? 'syscall-mach)
     1207    (allow syscall-mach (with telemetry))
     1208)
Note: See TracChangeset for help on using the changeset viewer.