Title: [272575] trunk/Source/WebKit
- Revision
- 272575
- Author
- [email protected]
- Date
- 2021-02-09 06:03:16 -0800 (Tue, 09 Feb 2021)
Log Message
Unreviewed, tvOS build fix after r272573
* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::requestUserMediaPermissionForSpeechRecognition): That ifdef was
updated by mistake in r272573.
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (272574 => 272575)
--- trunk/Source/WebKit/ChangeLog 2021-02-09 13:12:43 UTC (rev 272574)
+++ trunk/Source/WebKit/ChangeLog 2021-02-09 14:03:16 UTC (rev 272575)
@@ -1,5 +1,13 @@
2021-02-09 Philippe Normand <[email protected]>
+ Unreviewed, tvOS build fix after r272573
+
+ * UIProcess/WebPageProxy.cpp:
+ (WebKit::WebPageProxy::requestUserMediaPermissionForSpeechRecognition): That ifdef was
+ updated by mistake in r272573.
+
+2021-02-09 Philippe Normand <[email protected]>
+
[GLib] Permission request API for MediaKeySystem access support
https://bugs.webkit.org/show_bug.cgi?id=221199
Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (272574 => 272575)
--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp 2021-02-09 13:12:43 UTC (rev 272574)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp 2021-02-09 14:03:16 UTC (rev 272575)
@@ -10441,7 +10441,7 @@
void WebPageProxy::requestUserMediaPermissionForSpeechRecognition(FrameIdentifier frameIdentifier, const WebCore::SecurityOrigin& requestingOrigin, const WebCore::SecurityOrigin& topOrigin, CompletionHandler<void(bool)>&& completionHandler)
{
-#if ENABLE(ENCRYPTED_MEDIA)
+#if ENABLE(MEDIA_STREAM)
auto captureDevice = SpeechRecognitionCaptureSource::findCaptureDevice();
if (!captureDevice)
completionHandler(false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes