Title: [270330] trunk/Source/WebKit
Revision
270330
Author
[email protected]
Date
2020-12-01 16:40:44 -0800 (Tue, 01 Dec 2020)

Log Message

[macCatalyst] Embedded YouTube videos fail to play
https://bugs.webkit.org/show_bug.cgi?id=219412
<rdar://problem/71869657>

Reviewed by Tim Horton.

Add a missing comma in list of Media services, for which sandbox extensions are created. The missing comma
is causing a sandbox violation, since strings are concatenated when there's no comma.

* UIProcess/WebPageProxy.cpp:
(WebKit::mediaRelatedMachServices):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (270329 => 270330)


--- trunk/Source/WebKit/ChangeLog	2020-12-01 23:00:19 UTC (rev 270329)
+++ trunk/Source/WebKit/ChangeLog	2020-12-02 00:40:44 UTC (rev 270330)
@@ -1,5 +1,19 @@
 2020-12-01  Per Arne Vollan  <[email protected]>
 
+        [macCatalyst] Embedded YouTube videos fail to play
+        https://bugs.webkit.org/show_bug.cgi?id=219412
+        <rdar://problem/71869657>
+
+        Reviewed by Tim Horton.
+
+        Add a missing comma in list of Media services, for which sandbox extensions are created. The missing comma
+        is causing a sandbox violation, since strings are concatenated when there's no comma.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::mediaRelatedMachServices):
+
+2020-12-01  Per Arne Vollan  <[email protected]>
+
         [macOS] Deny mach lookup of 'com.apple.webinspector' in the WebContent process
         https://bugs.webkit.org/show_bug.cgi?id=219386
         <rdar://problem/60932734>

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (270329 => 270330)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-12-01 23:00:19 UTC (rev 270329)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-12-02 00:40:44 UTC (rev 270330)
@@ -7758,12 +7758,12 @@
         "com.apple.coremedia.sandboxserver.xpc"_s, "com.apple.coremedia.sts"_s,
         "com.apple.coremedia.systemcontroller.xpc"_s, "com.apple.coremedia.videoqueue"_s,
         "com.apple.coremedia.visualcontext.xpc"_s, "com.apple.airplay.apsynccontroller.xpc"_s,
-        "com.apple.audio.AURemoteIOServer"_s
+        "com.apple.audio.AURemoteIOServer"_s,
 #endif
 #if PLATFORM(MAC) || PLATFORM(MACCATALYST)
         "com.apple.audio.audiohald"_s, "com.apple.coremedia.endpointstream.xpc"_s, "com.apple.coremedia.endpointplaybacksession.xpc"_s,
         "com.apple.coremedia.endpointremotecontrolsession.xpc"_s, "com.apple.coremedia.videodecoder"_s,
-        "com.apple.coremedia.videoencoder"_s, "com.apple.lskdd"_s, "com.apple.trustd.agent"_s, "com.apple.BluetoothServices"_s
+        "com.apple.coremedia.videoencoder"_s, "com.apple.lskdd"_s, "com.apple.trustd.agent"_s, "com.apple.BluetoothServices"_s,
 #endif
     });
     return services;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to