Title: [270900] trunk/Source/WebKit
Revision
270900
Author
[email protected]
Date
2020-12-16 12:33:21 -0800 (Wed, 16 Dec 2020)

Log Message

REGRESSION (r270657) [AS Only] GGE: Netflix, YouTube, Amazon Prime, and Hulu fail to playback
https://bugs.webkit.org/show_bug.cgi?id=219954
<rdar://problem/72325887>

Reviewed by Per Arne Vollan.

Correct a syntax error in a sandbox rule added in r270657.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (270899 => 270900)


--- trunk/Source/WebKit/ChangeLog	2020-12-16 20:04:41 UTC (rev 270899)
+++ trunk/Source/WebKit/ChangeLog	2020-12-16 20:33:21 UTC (rev 270900)
@@ -1,3 +1,15 @@
+2020-12-16  Brent Fulgham  <[email protected]>
+
+        REGRESSION (r270657) [AS Only] GGE: Netflix, YouTube, Amazon Prime, and Hulu fail to playback
+        https://bugs.webkit.org/show_bug.cgi?id=219954
+        <rdar://problem/72325887>
+
+        Reviewed by Per Arne Vollan.
+
+        Correct a syntax error in a sandbox rule added in r270657.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2020-12-15  Simon Fraser  <[email protected]>
 
         Calls to setFixedLayoutSize() should not be inside ENABLE(TEXT_AUTOSIZING)

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-12-16 20:04:41 UTC (rev 270899)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-12-16 20:33:21 UTC (rev 270900)
@@ -952,7 +952,7 @@
 )
 
 ;; <rdar://problem/60088861>
-(if (equal? (param "CPU") "arm64")
+(when (equal? (param "CPU") "arm64")
     (allow iokit-open
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
         (with telemetry-backtrace)
@@ -1694,6 +1694,7 @@
     (require-all
         (require-not (extension "com.apple.webkit.extension.iokit"))
         (iokit-registry-entry-class
+            "AppleAVDUserClient"
             "AppleIntelMEUserClient"
             "AppleSNBFBUserClient"
         )
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to