Title: [215512] trunk/Source/WebKit2
Revision
215512
Author
[email protected]
Date
2017-04-19 08:51:37 -0700 (Wed, 19 Apr 2017)

Log Message

Provide a way for clients to unmute a media stream.
https://bugs.webkit.org/show_bug.cgi?id=170855
<rdar://problem/31656855>

Unreviewed, fix a typo missed in the review of r215420.

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView _setPageMuted:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (215511 => 215512)


--- trunk/Source/WebKit2/ChangeLog	2017-04-19 15:20:50 UTC (rev 215511)
+++ trunk/Source/WebKit2/ChangeLog	2017-04-19 15:51:37 UTC (rev 215512)
@@ -1,3 +1,14 @@
+2017-04-19  Eric Carlson  <[email protected]>
+
+        Provide a way for clients to unmute a media stream.
+        https://bugs.webkit.org/show_bug.cgi?id=170855
+        <rdar://problem/31656855>
+
+        Unreviewed, fix a typo missed in the review of r215420.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView _setPageMuted:]):
+
 2017-04-19  Adrian Perez de Castro  <[email protected]>
 
         [GTK] WebKitAutocleanups.h regression in v2.16.1 release

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (215511 => 215512)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2017-04-19 15:20:50 UTC (rev 215511)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2017-04-19 15:51:37 UTC (rev 215512)
@@ -4421,7 +4421,7 @@
 
     if (mutedState & _WKMediaAudioMuted)
         coreState |= WebCore::MediaProducer::AudioIsMuted;
-    if (coreState & _WKMediaCaptureDevicesMuted)
+    if (mutedState & _WKMediaCaptureDevicesMuted)
         coreState |= WebCore::MediaProducer::CaptureDevicesAreMuted;
 
     _page->setMuted(coreState);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to