ungoogled/existing-switches: fix order of webrtc policy pref (#390)

This commit is contained in:
wukko
2025-11-04 13:39:10 +06:00
committed by GitHub
parent 70627f67f4
commit cc1db76e65

View File

@@ -23,16 +23,16 @@
+#ifndef CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_
+#define CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_
+const FeatureEntry::Choice kWebRTCIPPolicy[] = {
+ {"Disable non proxied udp", "", ""},
+ {"Default public interface only",
+ "webrtc-ip-handling-policy",
+ "default_public_interface_only"},
+ {"Default",
+ "webrtc-ip-handling-policy",
+ "default"},
+ {"Default public and private interfaces",
+ "webrtc-ip-handling-policy",
+ "default_public_and_private_interfaces"},
+ {"Default public interface only",
+ "webrtc-ip-handling-policy",
+ "default_public_interface_only"},
+ {"Disable non proxied udp", "", ""},
+};
+#endif // CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_
--- /dev/null