Title: [272769] trunk/Source/WebCore
Revision
272769
Author
jer.no...@apple.com
Date
2021-02-11 19:24:52 -0800 (Thu, 11 Feb 2021)

Log Message

Unreviewed build fix after r272758; include missing change to RuntimeEnabledFeatures.

* page/RuntimeEnabledFeatures.h:
(WebCore::RuntimeEnabledFeatures::setOpusDecoderEnabled):
(WebCore::RuntimeEnabledFeatures::opusDecoderEnabled const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (272768 => 272769)


--- trunk/Source/WebCore/ChangeLog	2021-02-12 02:56:51 UTC (rev 272768)
+++ trunk/Source/WebCore/ChangeLog	2021-02-12 03:24:52 UTC (rev 272769)
@@ -1,3 +1,11 @@
+2021-02-11  Jer Noble  <jer.no...@apple.com>
+
+        Unreviewed build fix after r272758; include missing change to RuntimeEnabledFeatures.
+
+        * page/RuntimeEnabledFeatures.h:
+        (WebCore::RuntimeEnabledFeatures::setOpusDecoderEnabled):
+        (WebCore::RuntimeEnabledFeatures::opusDecoderEnabled const):
+
 2021-02-11  Nikita Vasilyev  <nvasil...@apple.com>
 
         Web Inspector: "Show Extended Gridlines" option for grid overlay does not work

Modified: trunk/Source/WebCore/page/RuntimeEnabledFeatures.h (272768 => 272769)


--- trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2021-02-12 02:56:51 UTC (rev 272768)
+++ trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2021-02-12 03:24:52 UTC (rev 272769)
@@ -267,6 +267,11 @@
     bool vorbisDecoderEnabled() const { return m_vorbisDecoderEnabled; }
 #endif
 
+#if ENABLE(OPUS)
+    void setOpusDecoderEnabled(bool isEnabled) { m_opusDecoderEnabled = isEnabled; }
+    bool opusDecoderEnabled() const { return m_opusDecoderEnabled; }
+#endif
+
 #if ENABLE(WEB_AUTHN)
     void setWebAuthenticationModernEnabled(bool areEnabled) { m_areWebAuthenticationModernEnabled = areEnabled; }
     bool webAuthenticationModernEnabled() const { return m_areWebAuthenticationModernEnabled; }
@@ -411,6 +416,10 @@
     bool m_vorbisDecoderEnabled { false };
 #endif
 
+#if ENABLE(OPUS)
+    bool m_opusDecoderEnabled { false };
+#endif
+
 #if ENABLE(WEB_AUTHN)
     bool m_areWebAuthenticationModernEnabled { false };
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to