Commit 854bee4f authored by wychen's avatar wychen Committed by Commit bot

Make AdaBoost the default heuristic for ReaderModeUI finch

BUG=408658

Review-Url: https://codereview.chromium.org/2212663003
Cr-Commit-Position: refs/heads/master@{#417382}
parent cd115ae6
...@@ -40,8 +40,12 @@ DistillerHeuristicsType GetDistillerHeuristicsType() { ...@@ -40,8 +40,12 @@ DistillerHeuristicsType GetDistillerHeuristicsType() {
base::CompareCase::INSENSITIVE_ASCII)) { base::CompareCase::INSENSITIVE_ASCII)) {
return DistillerHeuristicsType::OG_ARTICLE; return DistillerHeuristicsType::OG_ARTICLE;
} }
if (base::StartsWith(group_name, "Disabled",
base::CompareCase::INSENSITIVE_ASCII)) {
return DistillerHeuristicsType::NONE;
}
} }
return DistillerHeuristicsType::NONE; return DistillerHeuristicsType::ADABOOST_MODEL;
} }
bool ShouldShowFeedbackForm() { bool ShouldShowFeedbackForm() {
......
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