Set runtime flag m_isWebRTCPlatformCodecsInGPUProcessEnabled to false by default
https://bugs.webkit.org/show_bug.cgi?id=213779

Reviewed by Alex Christensen.

No change of behavior since this flag is WebKit 2 only and off by default.
Move off by default WebRTC flags at the end of the section.

* page/RuntimeEnabledFeatures.h:


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@263758 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index c3e2874..42adcd8 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2020-06-30  Youenn Fablet  <youenn@apple.com>
+
+        Set runtime flag m_isWebRTCPlatformCodecsInGPUProcessEnabled to false by default
+        https://bugs.webkit.org/show_bug.cgi?id=213779
+
+        Reviewed by Alex Christensen.
+
+        No change of behavior since this flag is WebKit 2 only and off by default.
+        Move off by default WebRTC flags at the end of the section.
+
+        * page/RuntimeEnabledFeatures.h:
+
 2020-06-30  Jason Lawrence  <lawrence.j@apple.com>
 
         Unreviewed, reverting r263753.
diff --git a/Source/WebCore/page/RuntimeEnabledFeatures.h b/Source/WebCore/page/RuntimeEnabledFeatures.h
index 2c8d523..79d2672 100644
--- a/Source/WebCore/page/RuntimeEnabledFeatures.h
+++ b/Source/WebCore/page/RuntimeEnabledFeatures.h
@@ -512,12 +512,12 @@
 
 #if ENABLE(WEB_RTC)
     bool m_isWebRTCDTMFEnabled { true };
+    bool m_isPeerConnectionEnabled { true };
+    bool m_isWebRTCH264SimulcastEnabled { true };
+    bool m_isWebRTCMDNSICECandidatesEnabled { false };
+    bool m_isWebRTCPlatformCodecsInGPUProcessEnabled { false };
     bool m_isWebRTCH265CodecEnabled { false };
     bool m_isWebRTCVP9CodecEnabled { false };
-    bool m_isPeerConnectionEnabled { true };
-    bool m_isWebRTCMDNSICECandidatesEnabled { false };
-    bool m_isWebRTCH264SimulcastEnabled { true };
-    bool m_isWebRTCPlatformCodecsInGPUProcessEnabled { true };
 #endif
 
 #if ENABLE(LEGACY_CSS_VENDOR_PREFIXES)