Title: [215436] trunk/Source/WebKit2
- Revision
- 215436
- Author
- eric.carl...@apple.com
- Date
- 2017-04-17 15:17:24 -0700 (Mon, 17 Apr 2017)
Log Message
[MediaStream] Fix typo in UIDelegate::mediaCaptureStateDidChange
https://bugs.webkit.org/show_bug.cgi?id=170911
Reviewed by Youenn Fablet.
* UIProcess/Cocoa/UIDelegate.mm:
(WebKit::UIDelegate::UIClient::mediaCaptureStateDidChange): Fix typo.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (215435 => 215436)
--- trunk/Source/WebKit2/ChangeLog 2017-04-17 22:15:44 UTC (rev 215435)
+++ trunk/Source/WebKit2/ChangeLog 2017-04-17 22:17:24 UTC (rev 215436)
@@ -1,3 +1,13 @@
+2017-04-17 Eric Carlson <eric.carl...@apple.com>
+
+ [MediaStream] Fix typo in UIDelegate::mediaCaptureStateDidChange
+ https://bugs.webkit.org/show_bug.cgi?id=170911
+
+ Reviewed by Youenn Fablet.
+
+ * UIProcess/Cocoa/UIDelegate.mm:
+ (WebKit::UIDelegate::UIClient::mediaCaptureStateDidChange): Fix typo.
+
2017-04-17 Keith Rollin <krol...@apple.com>
Move and update WebLoaderStrategy logging statement
Modified: trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm (215435 => 215436)
--- trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm 2017-04-17 22:15:44 UTC (rev 215435)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm 2017-04-17 22:17:24 UTC (rev 215436)
@@ -446,7 +446,7 @@
mediaCaptureState |= _WKMediaCaptureStateActiveMicrophone;
if (state & WebCore::MediaProducer::HasActiveVideoCaptureDevice)
mediaCaptureState |= _WKMediaCaptureStateActiveCamera;
- if (state & WebCore::MediaProducer::HasActiveAudioCaptureDevice)
+ if (state & WebCore::MediaProducer::HasMutedAudioCaptureDevice)
mediaCaptureState |= _WKMediaCaptureStateMutedMicrophone;
if (state & WebCore::MediaProducer::HasMutedVideoCaptureDevice)
mediaCaptureState |= _WKMediaCaptureStateMutedCamera;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes