Changeset 131875 in webkit


Ignore:
Timestamp:
Oct 19, 2012 2:03:05 AM (12 years ago)
Author:
tommyw@google.com
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):

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r131873 r131875  
     12012-10-19  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Update the RuntimeEnabledFeatures flags
     4        https://bugs.webkit.org/show_bug.cgi?id=99714
     5
     6        Reviewed by Adam Barth.
     7
     8        Updating the RuntimeEnabledFeatures flags to match reality:
     9        isMediaStreamEnabled and isPeerConnectionEnabled should be true by default and
     10        isDeprecatedPeerConnectionEnabled false.
     11
     12        Patch covered by existing tests.
     13
     14        * bindings/generic/RuntimeEnabledFeatures.cpp:
     15        (WebCore):
     16
    1172012-10-19  Adam Barth  <abarth@webkit.org>
    218
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r128924 r131875  
    6363
    6464#if ENABLE(MEDIA_STREAM)
    65 bool RuntimeEnabledFeatures::isMediaStreamEnabled = false;
     65bool RuntimeEnabledFeatures::isMediaStreamEnabled = true;
    6666bool RuntimeEnabledFeatures::isPeerConnectionEnabled = true;
    67 bool RuntimeEnabledFeatures::isDeprecatedPeerConnectionEnabled = true;
     67bool RuntimeEnabledFeatures::isDeprecatedPeerConnectionEnabled = false;
    6868#endif
    6969
  • trunk/Tools/ChangeLog

    r131871 r131875  
     12012-10-19  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Update the RuntimeEnabledFeatures flags
     4        https://bugs.webkit.org/show_bug.cgi?id=99714
     5
     6        Reviewed by Adam Barth.
     7
     8        Enabling the DeprecatedPeerConnection so that all tests still run.
     9
     10        * DumpRenderTree/chromium/TestShell.cpp:
     11        (TestShell::TestShell):
     12
    1132012-10-18  Dominic Mazzoni  <dmazzoni@google.com>
    214
  • trunk/Tools/DumpRenderTree/chromium/TestShell.cpp

    r131815 r131875  
    136136    WebRuntimeFeatures::enableMediaStream(true);
    137137    WebRuntimeFeatures::enablePeerConnection(true);
     138    WebRuntimeFeatures::enableDeprecatedPeerConnection(true);
    138139    WebRuntimeFeatures::enableWebAudio(true);
    139140    WebRuntimeFeatures::enableVideoTrack(true);
Note: See TracChangeset for help on using the changeset viewer.