Title: [268290] trunk/Source/WebKit
- Revision
- 268290
- Author
- [email protected]
- Date
- 2020-10-09 14:45:00 -0700 (Fri, 09 Oct 2020)
Log Message
Promote WKWebView media playback SPI to API
https://bugs.webkit.org/show_bug.cgi?id=217335
Unreviewed build fix for macCatalyst.
* UIProcess/ios/WebPageProxyIOS.mm:
(WebKit::WebPageProxy::isUserFacingChanged):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (268289 => 268290)
--- trunk/Source/WebKit/ChangeLog 2020-10-09 21:32:52 UTC (rev 268289)
+++ trunk/Source/WebKit/ChangeLog 2020-10-09 21:45:00 UTC (rev 268290)
@@ -1,3 +1,13 @@
+2020-10-09 Ryan Haddad <[email protected]>
+
+ Promote WKWebView media playback SPI to API
+ https://bugs.webkit.org/show_bug.cgi?id=217335
+
+ Unreviewed build fix for macCatalyst.
+
+ * UIProcess/ios/WebPageProxyIOS.mm:
+ (WebKit::WebPageProxy::isUserFacingChanged):
+
2020-10-09 Simon Fraser <[email protected]>
Refactor wheel event coalescing into its own class
Modified: trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm (268289 => 268290)
--- trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm 2020-10-09 21:32:52 UTC (rev 268289)
+++ trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm 2020-10-09 21:45:00 UTC (rev 268290)
@@ -1614,9 +1614,9 @@
void WebPageProxy::isUserFacingChanged(bool isUserFacing)
{
if (!isUserFacing)
- suspendAllMediaPlayback();
+ suspendAllMediaPlayback([] { });
else
- resumeAllMediaPlayback();
+ resumeAllMediaPlayback([] { });
}
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes