Title: [234054] trunk/Source/WebKit
Revision
234054
Author
[email protected]
Date
2018-07-20 10:45:38 -0700 (Fri, 20 Jul 2018)

Log Message

[macOS] Relax WebKit sandbox to permit proper App Store behavior
https://bugs.webkit.org/show_bug.cgi?id=187831
<rdar://problem/42047455>

Reviewed by Alexey Proskuryakov.

The Mac App Store is unable to perform some gift card redemption tasks on macOS due to missing sandbox permissions.
This patch adds those permissions.

* PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (234053 => 234054)


--- trunk/Source/WebKit/ChangeLog	2018-07-20 17:36:57 UTC (rev 234053)
+++ trunk/Source/WebKit/ChangeLog	2018-07-20 17:45:38 UTC (rev 234054)
@@ -1,3 +1,16 @@
+2018-07-20  Brent Fulgham  <[email protected]>
+
+        [macOS] Relax WebKit sandbox to permit proper App Store behavior
+        https://bugs.webkit.org/show_bug.cgi?id=187831
+        <rdar://problem/42047455>
+
+        Reviewed by Alexey Proskuryakov.
+
+        The Mac App Store is unable to perform some gift card redemption tasks on macOS due to missing sandbox permissions.
+        This patch adds those permissions.
+
+        * PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in:
+
 2018-07-20  Brady Eidson  <[email protected]>
 
         Add WKNavigation/WKNavigationAction related SPI.

Modified: trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in (234053 => 234054)


--- trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in	2018-07-20 17:36:57 UTC (rev 234053)
+++ trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in	2018-07-20 17:45:38 UTC (rev 234054)
@@ -367,6 +367,7 @@
 ;; Various services required by AppKit and other frameworks
 (allow mach-lookup
     (global-name "com.apple.audio.AudioComponentRegistrar")
+    (global-name "com.apple.assertiond.processassertionconnection")
     (global-name "com.apple.CoreServices.coreservicesd")
     (global-name "com.apple.DiskArbitration.diskarbitrationd")
     (global-name "com.apple.FileCoordination")
@@ -391,6 +392,7 @@
     (global-name "com.apple.ocspd")
     (global-name "com.apple.pasteboard.1")
     (global-name "com.apple.pbs.fetch_services")
+    (global-name "com.apple.tccd")
     (global-name "com.apple.tccd.system")
     (global-name "com.apple.tsm.uiserver")
     (global-name "com.apple.window_proxies")
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to