Title: [279200] trunk/Source/WebCore
Revision
279200
Author
[email protected]
Date
2021-06-23 17:45:01 -0700 (Wed, 23 Jun 2021)

Log Message

Fix iOS Debug testing be removing the assert added in r279119
https://bugs.webkit.org/show_bug.cgi?id=227227

Reviewed by Eric Carlson.

* platform/audio/ios/AudioSessionIOS.mm:
(WebCore::setEligibleForSmartRouting):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (279199 => 279200)


--- trunk/Source/WebCore/ChangeLog	2021-06-24 00:15:43 UTC (rev 279199)
+++ trunk/Source/WebCore/ChangeLog	2021-06-24 00:45:01 UTC (rev 279200)
@@ -1,3 +1,13 @@
+2021-06-23  Truitt Savell  <[email protected]>
+
+        Fix iOS Debug testing be removing the assert added in r279119
+        https://bugs.webkit.org/show_bug.cgi?id=227227
+
+        Reviewed by Eric Carlson.
+
+        * platform/audio/ios/AudioSessionIOS.mm:
+        (WebCore::setEligibleForSmartRouting):
+
 2021-06-23  Jer Noble  <[email protected]>
 
         [Cocoa] Make the hostTime parameter to playSession a Monotonic time

Modified: trunk/Source/WebCore/platform/audio/ios/AudioSessionIOS.mm (279199 => 279200)


--- trunk/Source/WebCore/platform/audio/ios/AudioSessionIOS.mm	2021-06-24 00:15:43 UTC (rev 279199)
+++ trunk/Source/WebCore/platform/audio/ios/AudioSessionIOS.mm	2021-06-24 00:45:01 UTC (rev 279200)
@@ -99,7 +99,6 @@
 static void setEligibleForSmartRouting(bool eligible)
 {
 #if PLATFORM(IOS)
-    ASSERT(!isMainThread());
 
     auto *session = [PAL::getAVAudioSessionClass() sharedInstance];
     if (![session respondsToSelector:@selector(setEligibleForBTSmartRoutingConsideration:error:)]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to