Skip to content

Commit

Permalink
Enable DoH by default in Android UI
Browse files Browse the repository at this point in the history
Followup to crrev.com/c/2429243. Chrome Java code for reading feature
params is done is such a way that it sets its own defaults instead of
the ones centrally defined with the feature params in chrome_features.cc

Bug: 878582,1098039
Change-Id: Ifef32ee702334e5d422b30490c472b165f3b48cf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431790
Auto-Submit: Eric Orth <ericorth@chromium.org>
Commit-Queue: Dan McArdle <dmcardle@chromium.org>
Reviewed-by: Dan McArdle <dmcardle@chromium.org>
Cr-Commit-Position: refs/heads/master@{#810807}
  • Loading branch information
Eric Orth authored and Commit Bot committed Sep 25, 2020
1 parent 26e9b83 commit d79d418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static boolean isUiEnabled() {
// Must match features::kDnsOverHttpsShowUiParam.
final String showUiParam = "ShowUi";
// Must match the default value for this param.
final boolean showUiParamDefault = false;
final boolean showUiParamDefault = true;

return ChromeFeatureList.getFieldTrialParamByFeatureAsBoolean(
ChromeFeatureList.DNS_OVER_HTTPS, showUiParam, showUiParamDefault);
Expand Down

0 comments on commit d79d418

Please sign in to comment.