Commit ce849f9c authored by Eric Orth's avatar Eric Orth Committed by Commit Bot

Add DNS.SB to DoH config UI for EE and DE

Bug: 1065338
Change-Id: I95826e4c124f312411284a44b49b6f2fe2c32ebe
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153685
Commit-Queue: Eric Orth <ericorth@chromium.org>
Reviewed-by: default avatarMatt Menke <mmenke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#759809}
parent 74148d09
...@@ -105,12 +105,13 @@ const std::vector<DohProviderEntry>& GetDohProviderList() { ...@@ -105,12 +105,13 @@ const std::vector<DohProviderEntry>& GetDohProviderList() {
false /* display_globally */, false /* display_globally */,
{} /* display_countries */), {} /* display_countries */),
DohProviderEntry( DohProviderEntry(
"Dnssb", base::nullopt /* provider_id_for_histogram */, "Dnssb", DohProviderIdForHistogram::kDnsSb,
{"185.222.222.222", "185.184.222.222", "2a09::", "2a09::1"}, {"185.222.222.222", "185.184.222.222", "2a09::", "2a09::1"},
{"dns.sb"} /* dns_over_tls_hostnames */, {"dns.sb"} /* dns_over_tls_hostnames */,
"https://doh.dns.sb/dns-query?no_ecs=true{&dns}", "" /* ui_name */, "https://doh.dns.sb/dns-query?no_ecs=true{&dns}",
"" /* privacy_policy */, false /* display_globally */, "DNS.SB" /* ui_name */,
{} /* display_countries */), "https://dns.sb/privacy/" /* privacy_policy */,
false /* display_globally */, {"EE", "DE"} /* display_countries */),
DohProviderEntry("Google", DohProviderIdForHistogram::kGoogle, DohProviderEntry("Google", DohProviderIdForHistogram::kGoogle,
{"8.8.8.8", "8.8.4.4", "2001:4860:4860::8888", {"8.8.8.8", "8.8.4.4", "2001:4860:4860::8888",
"2001:4860:4860::8844"}, "2001:4860:4860::8844"},
......
...@@ -25,7 +25,8 @@ enum class DohProviderIdForHistogram { ...@@ -25,7 +25,8 @@ enum class DohProviderIdForHistogram {
kGoogle = 3, kGoogle = 3,
kIij = 4, kIij = 4,
kQuad9Secure = 5, kQuad9Secure = 5,
kMaxValue = kQuad9Secure, kDnsSb = 6,
kMaxValue = kDnsSb,
}; };
// Represents insecure DNS, DoT, and DoH services run by the same provider. // Represents insecure DNS, DoT, and DoH services run by the same provider.
......
...@@ -15767,6 +15767,7 @@ Called by update_document_policy_enum.py.--> ...@@ -15767,6 +15767,7 @@ Called by update_document_policy_enum.py.-->
<int value="3" label="GOOGLE"/> <int value="3" label="GOOGLE"/>
<int value="4" label="IIJ"/> <int value="4" label="IIJ"/>
<int value="5" label="QUAD9_SECURE"/> <int value="5" label="QUAD9_SECURE"/>
<int value="6" label="DNS_SB"/>
</enum> </enum>
<enum name="DomainBoundCerts.DBLoadStatus"> <enum name="DomainBoundCerts.DBLoadStatus">
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment