Title: [268563] trunk/Source/WebKit
Revision
268563
Author
[email protected]
Date
2020-10-15 17:09:37 -0700 (Thu, 15 Oct 2020)

Log Message

[macOS] Add telemetry for distributed notification service
https://bugs.webkit.org/show_bug.cgi?id=217762
<rdar://problem/70341045>

Reviewed by Brent Fulgham.

Add telemetry with backtrace for the distributed notification service on macOS.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (268562 => 268563)


--- trunk/Source/WebKit/ChangeLog	2020-10-16 00:06:17 UTC (rev 268562)
+++ trunk/Source/WebKit/ChangeLog	2020-10-16 00:09:37 UTC (rev 268563)
@@ -1,3 +1,15 @@
+2020-10-15  Per Arne Vollan  <[email protected]>
+
+        [macOS] Add telemetry for distributed notification service
+        https://bugs.webkit.org/show_bug.cgi?id=217762
+        <rdar://problem/70341045>
+
+        Reviewed by Brent Fulgham.
+
+        Add telemetry with backtrace for the distributed notification service on macOS.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2020-10-15  David Kilzer  <[email protected]>
 
         PDFPlugin.mm:2303:139: error: type 'SEL _Nullable' cannot be narrowed to 'bool' in initializer list [-Wc++11-narrowing]

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-10-16 00:06:17 UTC (rev 268562)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-10-16 00:09:37 UTC (rev 268563)
@@ -804,11 +804,17 @@
        (ipc-posix-name "com.apple.AppleDatabaseChanged"))
 
 ;; CoreFoundation. We don't import com.apple.corefoundation.sb, because it allows unnecessary access to pasteboard.
+#if !HAVE(CSCHECKFIXDISABLE)
 (allow mach-lookup
-    (global-name-regex #"^com.apple.distributed_notifications")
-#if !HAVE(CSCHECKFIXDISABLE)
     (global-name "com.apple.CoreServices.coreservicesd")
+)
 #endif
+
+(allow mach-lookup
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+    (with telemetry-backtrace)
+#endif
+    (global-name-regex #"^com.apple.distributed_notifications")
 )
 
 (allow file-read-data
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to