Title: [267405] trunk/Source/WebKit
Revision
267405
Author
[email protected]
Date
2020-09-22 07:54:16 -0700 (Tue, 22 Sep 2020)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (267404 => 267405)


--- trunk/Source/WebKit/ChangeLog	2020-09-22 13:34:07 UTC (rev 267404)
+++ trunk/Source/WebKit/ChangeLog	2020-09-22 14:54:16 UTC (rev 267405)
@@ -1,3 +1,14 @@
+2020-09-22  Per Arne Vollan  <[email protected]>
+
+        [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:
+
 2020-09-22  Youenn Fablet  <[email protected]>
 
         Move Media in GPU Process flag from internal to experimental

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (267404 => 267405)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-09-22 13:34:07 UTC (rev 267404)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-09-22 14:54:16 UTC (rev 267405)
@@ -1194,3 +1194,15 @@
 #if USE(APPLE_INTERNAL_SDK)
 #include <WebKitAdditions/WebContentSandboxAdditionsMac.sb>
 #endif
+
+(when (defined? 'mach-kernel-endpoint)
+    (allow mach-kernel-endpoint
+        (apply-message-filter
+            (allow mach-message-send (with telemetry))
+        )
+    )
+)
+
+(when (defined? 'syscall-mach)
+    (allow syscall-mach (with telemetry))
+)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to