Title: [261107] trunk/Source/WebKit
Revision
261107
Author
[email protected]
Date
2020-05-04 13:02:22 -0700 (Mon, 04 May 2020)

Log Message

Remove unneeded check for Apple Media Services
https://bugs.webkit.org/show_bug.cgi?id=211391
<rdar://problem/62853199>

Reviewed by Per Arne Vollan.

Earlier in the development cycle we added an entitlement check for AppleMediaServices, that we now realize
we do not need. Since this is a non-zero performance cost, remove this check.

* UIProcess/WebPageProxy.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (261106 => 261107)


--- trunk/Source/WebKit/ChangeLog	2020-05-04 20:00:06 UTC (rev 261106)
+++ trunk/Source/WebKit/ChangeLog	2020-05-04 20:02:22 UTC (rev 261107)
@@ -1,3 +1,16 @@
+2020-05-04  Brent Fulgham  <[email protected]>
+
+        Remove unneeded check for Apple Media Services
+        https://bugs.webkit.org/show_bug.cgi?id=211391
+        <rdar://problem/62853199>
+
+        Reviewed by Per Arne Vollan.
+
+        Earlier in the development cycle we added an entitlement check for AppleMediaServices, that we now realize
+        we do not need. Since this is a non-zero performance cost, remove this check.
+
+        * UIProcess/WebPageProxy.cpp:
+
 2020-05-04  Devin Rousso  <[email protected]>
 
         Web Inspector: provide a way for inspector to turn on/off ITP debug mode and AdClickAttribution debug mode

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (261106 => 261107)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-05-04 20:00:06 UTC (rev 261106)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-05-04 20:02:22 UTC (rev 261107)
@@ -485,7 +485,7 @@
     , m_tryCloseTimeoutTimer(RunLoop::main(), this, &WebPageProxy::tryCloseTimedOut)
     , m_corsDisablingPatterns(m_configuration->corsDisablingPatterns())
 #if PLATFORM(COCOA)
-    , m_ignoresAppBoundDomains(m_configuration->ignoresAppBoundDomains() || WTF::processHasEntitlement("com.apple.private.applemediaservices"))
+    , m_ignoresAppBoundDomains(m_configuration->ignoresAppBoundDomains())
     , m_limitsNavigationsToAppBoundDomains(m_configuration->limitsNavigationsToAppBoundDomains())
 #endif
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to