Commit 535cbeb7 authored by Thanh Nguyen's avatar Thanh Nguyen Committed by Commit Bot

[cros-fuzzy-app] Enable fuzzy app search by default

This CL enables fuzzy app search by default.

Bug: 990684
Change-Id: I934aeb5f4290a4a4849936d53ba44567f2a69ad2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006988
Commit-Queue: Thanh Nguyen <thanhdng@chromium.org>
Reviewed-by: default avatarJia Meng <jiameng@chromium.org>
Reviewed-by: default avatarXiyuan Xia <xiyuan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#733007}
parent f8fe48e4
......@@ -55,7 +55,7 @@ const base::Feature kEnableAggregatedMlAppRanking{
const base::Feature kScalableAppList{"ScalableAppList",
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kEnableFuzzyAppSearch{"EnableFuzzyAppSearch",
base::FEATURE_DISABLED_BY_DEFAULT};
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kEnableAggregatedMlSearchRanking{
"EnableAggregatedMlSearchRanking", base::FEATURE_DISABLED_BY_DEFAULT};
......
......@@ -106,7 +106,12 @@ class AppSearchProviderTest : public AppListTestBase {
public:
AppSearchProviderTest() {
// Disable System Web Apps so the Settings Internal App is still installed.
scoped_feature_list_.InitAndDisableFeature(features::kSystemWebApps);
// TODO(crbug.com/990684): disable FuzzyAppSearch because we flipped the
// flag to be enabled by default, need to enable it after it is fully
// launched.
scoped_feature_list_.InitWithFeatures(
{},
{features::kSystemWebApps, app_list_features::kEnableFuzzyAppSearch});
}
~AppSearchProviderTest() override {}
......
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