Title: [131875] trunk
Revision
131875
Author
tom...@google.com
Date
2012-10-19 02:03:05 -0700 (Fri, 19 Oct 2012)

Log Message

MediaStream API: Update the RuntimeEnabledFeatures flags
https://bugs.webkit.org/show_bug.cgi?id=99714

Reviewed by Adam Barth.

Source/WebCore:

Updating the RuntimeEnabledFeatures flags to match reality:
isMediaStreamEnabled and isPeerConnectionEnabled should be true by default and
isDeprecatedPeerConnectionEnabled false.

Patch covered by existing tests.

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore):

Tools:

Enabling the DeprecatedPeerConnection so that all tests still run.

* DumpRenderTree/chromium/TestShell.cpp:
(TestShell::TestShell):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (131874 => 131875)


--- trunk/Source/WebCore/ChangeLog	2012-10-19 08:59:23 UTC (rev 131874)
+++ trunk/Source/WebCore/ChangeLog	2012-10-19 09:03:05 UTC (rev 131875)
@@ -1,3 +1,19 @@
+2012-10-19  Tommy Widenflycht  <tom...@google.com>
+
+        MediaStream API: Update the RuntimeEnabledFeatures flags
+        https://bugs.webkit.org/show_bug.cgi?id=99714
+
+        Reviewed by Adam Barth.
+
+        Updating the RuntimeEnabledFeatures flags to match reality:
+        isMediaStreamEnabled and isPeerConnectionEnabled should be true by default and
+        isDeprecatedPeerConnectionEnabled false.
+
+        Patch covered by existing tests.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore):
+
 2012-10-19  Adam Barth  <aba...@webkit.org>
 
         [V8] Simplify GCPrologueVisitor

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (131874 => 131875)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-10-19 08:59:23 UTC (rev 131874)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-10-19 09:03:05 UTC (rev 131875)
@@ -62,9 +62,9 @@
 #endif
 
 #if ENABLE(MEDIA_STREAM)
-bool RuntimeEnabledFeatures::isMediaStreamEnabled = false;
+bool RuntimeEnabledFeatures::isMediaStreamEnabled = true;
 bool RuntimeEnabledFeatures::isPeerConnectionEnabled = true;
-bool RuntimeEnabledFeatures::isDeprecatedPeerConnectionEnabled = true;
+bool RuntimeEnabledFeatures::isDeprecatedPeerConnectionEnabled = false;
 #endif
 
 #if ENABLE(GAMEPAD)

Modified: trunk/Tools/ChangeLog (131874 => 131875)


--- trunk/Tools/ChangeLog	2012-10-19 08:59:23 UTC (rev 131874)
+++ trunk/Tools/ChangeLog	2012-10-19 09:03:05 UTC (rev 131875)
@@ -1,3 +1,15 @@
+2012-10-19  Tommy Widenflycht  <tom...@google.com>
+
+        MediaStream API: Update the RuntimeEnabledFeatures flags
+        https://bugs.webkit.org/show_bug.cgi?id=99714
+
+        Reviewed by Adam Barth.
+
+        Enabling the DeprecatedPeerConnection so that all tests still run.
+
+        * DumpRenderTree/chromium/TestShell.cpp:
+        (TestShell::TestShell):
+
 2012-10-18  Dominic Mazzoni  <dmazz...@google.com>
 
         AX: labelForElement is slow when there are a lot of DOM elements

Modified: trunk/Tools/DumpRenderTree/chromium/TestShell.cpp (131874 => 131875)


--- trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2012-10-19 08:59:23 UTC (rev 131874)
+++ trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2012-10-19 09:03:05 UTC (rev 131875)
@@ -135,6 +135,7 @@
     WebRuntimeFeatures::enableEncryptedMedia(true);
     WebRuntimeFeatures::enableMediaStream(true);
     WebRuntimeFeatures::enablePeerConnection(true);
+    WebRuntimeFeatures::enableDeprecatedPeerConnection(true);
     WebRuntimeFeatures::enableWebAudio(true);
     WebRuntimeFeatures::enableVideoTrack(true);
     WebRuntimeFeatures::enableGamepad(true);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to