Changeset 202704 in webkit


Ignore:
Timestamp:
Jun 30, 2016 2:20:27 PM (8 years ago)
Author:
eric.carlson@apple.com
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:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r202698 r202704  
     12016-06-30  Eric Carlson  <eric.carlson@apple.com>
     2
     3        getUserMedia() exposed, but not functional
     4        https://bugs.webkit.org/show_bug.cgi?id=158393
     5        <rdar://problem/26642259>
     6
     7        Reviewed by Dean Jackson.
     8       
     9        Set default value of the Media Stream runtime flag to false on Mac OS X and iOS until the
     10        browser support is in place.
     11
     12        * bindings/generic/RuntimeEnabledFeatures.cpp:
     13        (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): Disable media stream by default
     14        on Mac OS X and iOS.
     15        * bindings/generic/RuntimeEnabledFeatures.h:
     16
    1172016-06-30  Commit Queue  <commit-queue@webkit.org>
    218
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r200697 r202704  
    6464    , m_isIndexedDBWorkersEnabled(true)
    6565#endif
    66 #if ENABLE(MEDIA_STREAM)
    67     , m_isMediaStreamEnabled(true)
     66#if ENABLE(MEDIA_STREAM) && PLATFORM(COCOA)
     67    , m_isMediaStreamEnabled(false)
    6868#endif
    6969#if ENABLE(WEB_RTC)
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h

    r202091 r202704  
    257257
    258258#if ENABLE(MEDIA_STREAM)
    259     bool m_isMediaStreamEnabled;
     259    bool m_isMediaStreamEnabled { true };
    260260#endif
    261261#if ENABLE(WEB_RTC)
Note: See TracChangeset for help on using the changeset viewer.