1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
ash / public / cpp / app_list / app_list_features.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/public/cpp/app_list/app_list_features.h"
#include "ash/constants/ash_features.h"
#include "base/feature_list.h"
#include "base/metrics/field_trial_params.h"
namespace app_list_features {
BASE_FEATURE(kEnableAppReinstallZeroState,
"EnableAppReinstallZeroState",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kEnableAppListLaunchRecording,
"EnableAppListLaunchRecording",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kEnableExactMatchForNonLatinLocale,
"EnableExactMatchForNonLatinLocale",
base::FEATURE_ENABLED_BY_DEFAULT);
// DO NOT REMOVE: Tast integration tests use this feature. (See crbug/1340267)
BASE_FEATURE(kForceShowContinueSection,
"ForceShowContinueSection",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kDynamicSearchUpdateAnimation,
"DynamicSearchUpdateAnimation",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kLauncherPlayStoreSearch,
"LauncherPlayStoreSearch",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kAppsCollections,
"AppsCollections",
base::FEATURE_DISABLED_BY_DEFAULT);
bool IsAppReinstallZeroStateEnabled() {
return base::FeatureList::IsEnabled(kEnableAppReinstallZeroState);
}
bool IsExactMatchForNonLatinLocaleEnabled() {
return base::FeatureList::IsEnabled(kEnableExactMatchForNonLatinLocale);
}
bool IsAppListLaunchRecordingEnabled() {
return base::FeatureList::IsEnabled(kEnableAppListLaunchRecording);
}
bool IsDynamicSearchUpdateAnimationEnabled() {
// Search update animations are only supported for categorical search.
return base::FeatureList::IsEnabled(kDynamicSearchUpdateAnimation);
}
base::TimeDelta DynamicSearchUpdateAnimationDuration() {
int ms = base::GetFieldTrialParamByFeatureAsInt(
kDynamicSearchUpdateAnimation, "animation_time", /*default value =*/100);
return base::TimeDelta(base::Milliseconds(ms));
}
bool IsForceShowContinueSectionEnabled() {
return base::FeatureList::IsEnabled(kForceShowContinueSection);
}
bool IsLauncherPlayStoreSearchEnabled() {
return base::FeatureList::IsEnabled(kLauncherPlayStoreSearch);
}
bool IsAppsCollectionsEnabled() {
return base::FeatureList::IsEnabled(kAppsCollections);
}
bool IsAppsCollectionsEnabledCounterfactually() {
return IsAppsCollectionsEnabled() &&
kAppsCollectionsEnabledCounterfactually.Get();
}
bool IsAppsCollectionsEnabledWithModifiedOrder() {
return IsAppsCollectionsEnabled() &&
kAppsCollectionsEnabledWithModifiedOrder.Get();
}
} // namespace app_list_features