Title: [167623] trunk/Source/WebCore
Revision
167623
Author
[email protected]
Date
2014-04-21 14:06:57 -0700 (Mon, 21 Apr 2014)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (167622 => 167623)


--- trunk/Source/WebCore/ChangeLog	2014-04-21 21:00:49 UTC (rev 167622)
+++ trunk/Source/WebCore/ChangeLog	2014-04-21 21:06:57 UTC (rev 167623)
@@ -1,3 +1,14 @@
+2014-04-21  Eric Carlson  <[email protected]>
+
+        [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.
+
 2014-04-21  Rik Cabanier  <[email protected]>
 
         [CSS Blending] Remove support for non-separable blend modes from mix-blend-mode

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (167622 => 167623)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2014-04-21 21:00:49 UTC (rev 167622)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2014-04-21 21:06:57 UTC (rev 167623)
@@ -57,6 +57,11 @@
     , m_isCSSRegionsEnabled(false)
     , m_isCSSCompositingEnabled(false)
     , m_isLangAttributeAwareFormControlUIEnabled(false)
+#if PLATFORM(IOS)
+    , m_isPluginReplacementEnabled(true)
+#else
+    , m_isPluginReplacementEnabled(false)
+#endif
 #if ENABLE(SCRIPTED_SPEECH)
     , m_isScriptedSpeechEnabled(false)
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to