Title: [216920] trunk/Source/WebCore
Revision
216920
Author
carlo...@webkit.org
Date
2017-05-16 02:10:55 -0700 (Tue, 16 May 2017)

Log Message

Unreviewed. Try to fix GTK+ build with MEDIA_STREAM enabled after r216918.

* platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp:
(WebCore::RealtimeMediaSourceCenterOwr::validateRequestConstraints):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (216919 => 216920)


--- trunk/Source/WebCore/ChangeLog	2017-05-16 08:53:21 UTC (rev 216919)
+++ trunk/Source/WebCore/ChangeLog	2017-05-16 09:10:55 UTC (rev 216920)
@@ -1,3 +1,10 @@
+2017-05-16  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Try to fix GTK+ build with MEDIA_STREAM enabled after r216918.
+
+        * platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp:
+        (WebCore::RealtimeMediaSourceCenterOwr::validateRequestConstraints):
+
 2017-05-16  Youenn Fablet  <you...@apple.com>
 
         Remove MediaConstraintsData and MediaConstraintsImpl

Modified: trunk/Source/WebCore/platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp (216919 => 216920)


--- trunk/Source/WebCore/platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp	2017-05-16 08:53:21 UTC (rev 216919)
+++ trunk/Source/WebCore/platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp	2017-05-16 09:10:55 UTC (rev 216920)
@@ -88,10 +88,10 @@
     // FIXME: Actually do constraints validation. The MediaConstraints
     // need to comply with the available audio/video device(s)
     // capabilities. See bug #123345.
-    if (audioConstraints.isValid())
+    if (audioConstraints.isValid)
         audioSources.append(String("audio"));
 
-    if (videoConstraints.isValid())
+    if (videoConstraints.isValid)
         videoSources.append(String("video"));
 
     m_validConstraintsHandler(WTFMove(audioSources), WTFMove(videoSources));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to