Title: [202704] trunk/Source/WebCore
Revision
202704
Author
eric.carl...@apple.com
Date
2016-06-30 14:20:27 -0700 (Thu, 30 Jun 2016)

Log Message

getUserMedia() exposed, but not functional
https://bugs.webkit.org/show_bug.cgi?id=158393
<rdar://problem/26642259>

Reviewed by Dean Jackson.

Set default value of the Media Stream runtime flag to false on Mac OS X and iOS until the
browser support is in place.

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): Disable media stream by default
on Mac OS X and iOS.
* bindings/generic/RuntimeEnabledFeatures.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202703 => 202704)


--- trunk/Source/WebCore/ChangeLog	2016-06-30 21:20:02 UTC (rev 202703)
+++ trunk/Source/WebCore/ChangeLog	2016-06-30 21:20:27 UTC (rev 202704)
@@ -1,3 +1,19 @@
+2016-06-30  Eric Carlson  <eric.carl...@apple.com>
+
+        getUserMedia() exposed, but not functional
+        https://bugs.webkit.org/show_bug.cgi?id=158393
+        <rdar://problem/26642259>
+
+        Reviewed by Dean Jackson.
+        
+        Set default value of the Media Stream runtime flag to false on Mac OS X and iOS until the
+        browser support is in place.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): Disable media stream by default
+        on Mac OS X and iOS.
+        * bindings/generic/RuntimeEnabledFeatures.h:
+
 2016-06-30  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r202676.

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (202703 => 202704)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2016-06-30 21:20:02 UTC (rev 202703)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2016-06-30 21:20:27 UTC (rev 202704)
@@ -63,8 +63,8 @@
 #if ENABLE(INDEXED_DATABASE_IN_WORKERS)
     , m_isIndexedDBWorkersEnabled(true)
 #endif
-#if ENABLE(MEDIA_STREAM)
-    , m_isMediaStreamEnabled(true)
+#if ENABLE(MEDIA_STREAM) && PLATFORM(COCOA)
+    , m_isMediaStreamEnabled(false)
 #endif
 #if ENABLE(WEB_RTC)
     , m_isPeerConnectionEnabled(true)

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h (202703 => 202704)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h	2016-06-30 21:20:02 UTC (rev 202703)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h	2016-06-30 21:20:27 UTC (rev 202704)
@@ -256,7 +256,7 @@
 #endif
 
 #if ENABLE(MEDIA_STREAM)
-    bool m_isMediaStreamEnabled;
+    bool m_isMediaStreamEnabled { true };
 #endif
 #if ENABLE(WEB_RTC)
     bool m_isPeerConnectionEnabled;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to