Title: [226072] trunk/Source/WebKit
Revision
226072
Author
[email protected]
Date
2017-12-18 13:13:41 -0800 (Mon, 18 Dec 2017)

Log Message

[macOS, iOS] Add new mach lookup port for CoreMedia remote control
https://bugs.webkit.org/show_bug.cgi?id=180938
<rdar://problem/35447664>

Reviewed by Eric Carlson.

Update the app sandbox to support a new XPC endpoint for CoreMedia. This endpoint exposes
existing functions through a new, more-focused interface. This will (hopefully) allow us
to remove the more generic endpoints in a future update.

* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (226071 => 226072)


--- trunk/Source/WebKit/ChangeLog	2017-12-18 21:13:03 UTC (rev 226071)
+++ trunk/Source/WebKit/ChangeLog	2017-12-18 21:13:41 UTC (rev 226072)
@@ -1,3 +1,18 @@
+2017-12-18  Brent Fulgham  <[email protected]>
+
+        [macOS, iOS] Add new mach lookup port for CoreMedia remote control
+        https://bugs.webkit.org/show_bug.cgi?id=180938
+        <rdar://problem/35447664>
+
+        Reviewed by Eric Carlson.
+
+        Update the app sandbox to support a new XPC endpoint for CoreMedia. This endpoint exposes
+        existing functions through a new, more-focused interface. This will (hopefully) allow us
+        to remove the more generic endpoints in a future update.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2017-12-18  Megan Gardner  <[email protected]>
 
         Support Autoscrolling in contenteditable for WK2

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (226071 => 226072)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2017-12-18 21:13:03 UTC (rev 226071)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2017-12-18 21:13:41 UTC (rev 226072)
@@ -295,6 +295,10 @@
 (allow mach-lookup
     (global-name "com.apple.coremedia.endpointplaybacksession.xpc"))
 
+;; <rdar://problem/35509194>
+(allow mach-lookup
+    (global-name "com.apple.coremedia.endpointremotecontrolsession.xpc"))
+
 ;;;
 ;;; End UIKit-apps.sb content
 ;;;

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2017-12-18 21:13:03 UTC (rev 226071)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2017-12-18 21:13:41 UTC (rev 226072)
@@ -727,6 +727,8 @@
     (global-name "com.apple.coremedia.endpointplaybacksession.xpc")
     ; "com.apple.coremedia.endpointpicker.xpc" can be removed when <rdar://problem/30081582> is resolved.
     (global-name "com.apple.coremedia.endpointpicker.xpc")
+    ; <rdar://problem/35509194>
+    (global-name "com.apple.coremedia.endpointremotecontrolsession.xpc")
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
     (global-name "com.apple.coremedia.routediscoverer.xpc")
     (global-name "com.apple.coremedia.routingcontext.xpc")
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to