Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Unified Diff: ui/app_list/app_list_features.cc

Issue 2961923002: Use EnablePlayStoreAppSearch feature flag. (Closed)
Patch Set: Oshima's comment. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/app_list_features.h ('k') | ui/app_list/views/search_result_tile_item_list_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..4ded82d2e9dc0176698f3114ffa6bbf1ae0a17f1 100644
--- a/ui/app_list/app_list_features.cc
+++ b/ui/app_list/app_list_features.cc
@@ -16,8 +16,8 @@ const base::Feature kEnableAnswerCardDarkRun{"EnableAnswerCardDarkRun",
base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kEnableFullscreenAppList{"EnableFullscreenAppList",
base::FEATURE_DISABLED_BY_DEFAULT};
-const base::Feature kEnablePlaystoreAppSearch{
- "EnablePlaystoreAppSearch", base::FEATURE_DISABLED_BY_DEFAULT};
+const base::Feature kEnablePlayStoreAppSearch{
+ "EnablePlayStoreAppSearch", base::FEATURE_DISABLED_BY_DEFAULT};
bool IsAnswerCardEnabled() {
static const bool enabled = base::FeatureList::IsEnabled(kEnableAnswerCard);
@@ -40,9 +40,9 @@ bool IsSearchResultsNewDesignEnabled() {
(IsAnswerCardEnabled() && !IsAnswerCardDarkRunEnabled());
}
-bool IsPlaystoreAppSearchEnabled() {
+bool IsPlayStoreAppSearchEnabled() {
static const bool enabled =
- base::FeatureList::IsEnabled(kEnablePlaystoreAppSearch);
+ base::FeatureList::IsEnabled(kEnablePlayStoreAppSearch);
return enabled;
}
« no previous file with comments | « ui/app_list/app_list_features.h ('k') | ui/app_list/views/search_result_tile_item_list_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698