Changeset 167623 in webkit


Ignore:
Timestamp:
Apr 21, 2014 2:06:57 PM (10 years ago)
Author:
eric.carlson@apple.com
Message:

[iOS] enable plug-in replacement
https://bugs.webkit.org/show_bug.cgi?id=131947

Reviewed by Jer Noble.

  • bindings/generic/RuntimeEnabledFeatures.cpp:

(WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): initialize m_isPluginReplacementEnabled

to true on iOS.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167620 r167623  
     12014-04-21  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [iOS] enable plug-in replacement
     4        https://bugs.webkit.org/show_bug.cgi?id=131947
     5
     6        Reviewed by Jer Noble.
     7
     8        * bindings/generic/RuntimeEnabledFeatures.cpp:
     9        (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): initialize m_isPluginReplacementEnabled
     10            to true on iOS.
     11
    1122014-04-21  Rik Cabanier  <cabanier@adobe.com>
    213
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r164131 r167623  
    5858    , m_isCSSCompositingEnabled(false)
    5959    , m_isLangAttributeAwareFormControlUIEnabled(false)
     60#if PLATFORM(IOS)
     61    , m_isPluginReplacementEnabled(true)
     62#else
     63    , m_isPluginReplacementEnabled(false)
     64#endif
    6065#if ENABLE(SCRIPTED_SPEECH)
    6166    , m_isScriptedSpeechEnabled(false)
Note: See TracChangeset for help on using the changeset viewer.