| Index: ui/app_list/app_list_features.cc
|
| diff --git a/ui/app_list/app_list_features.cc b/ui/app_list/app_list_features.cc
|
| index eec8b5727302538d23987c4ed240d72e28b63db4..efb627a30fe53b88f6398867a909e25ad6d14ef3 100644
|
| --- a/ui/app_list/app_list_features.cc
|
| +++ b/ui/app_list/app_list_features.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/feature_list.h"
|
| #include "base/metrics/field_trial_params.h"
|
| +#include "ui/app_list/app_list_switches.h"
|
|
|
| namespace app_list {
|
| namespace features {
|
| @@ -32,7 +33,8 @@ bool IsAnswerCardDarkRunEnabled() {
|
|
|
| bool IsFullscreenAppListEnabled() {
|
| // Not using local static variable to allow tests to change this value.
|
| - return base::FeatureList::IsEnabled(kEnableFullscreenAppList);
|
| + return switches::IsFullscreenAppListEnabled() ||
|
| + base::FeatureList::IsEnabled(kEnableFullscreenAppList);
|
| }
|
|
|
| bool IsSearchResultsNewDesignEnabled() {
|
|
|