Title: [270337] branches/safari-611.1.7-branch/Source/WebKit
Revision
270337
Author
[email protected]
Date
2020-12-01 18:46:49 -0800 (Tue, 01 Dec 2020)

Log Message

Cherry-pick r270330. rdar://problem/71876973

    [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):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@270330 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-611.1.7-branch/Source/WebKit/ChangeLog (270336 => 270337)


--- branches/safari-611.1.7-branch/Source/WebKit/ChangeLog	2020-12-02 02:46:33 UTC (rev 270336)
+++ branches/safari-611.1.7-branch/Source/WebKit/ChangeLog	2020-12-02 02:46:49 UTC (rev 270337)
@@ -1,3 +1,36 @@
+2020-12-01  Russell Epstein  <[email protected]>
+
+        Cherry-pick r270330. rdar://problem/71876973
+
+    [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):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@270330 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-11-28  Per Arne Vollan  <[email protected]>
 
         [macOS] Set application information in the Networking process on behalf of the WebContent process

Modified: branches/safari-611.1.7-branch/Source/WebKit/UIProcess/WebPageProxy.cpp (270336 => 270337)


--- branches/safari-611.1.7-branch/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-12-02 02:46:33 UTC (rev 270336)
+++ branches/safari-611.1.7-branch/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-12-02 02:46:49 UTC (rev 270337)
@@ -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