Index: chrome/browser/ui/app_list/search/search_controller_factory.cc |
diff --git a/chrome/browser/ui/app_list/search/search_controller_factory.cc b/chrome/browser/ui/app_list/search/search_controller_factory.cc |
index d2300ade93094e4f899fdb4c69d69215d9088597..ed2dbf320a09e38f4c7b3ace82d43cd804c9dd7c 100644 |
--- a/chrome/browser/ui/app_list/search/search_controller_factory.cc |
+++ b/chrome/browser/ui/app_list/search/search_controller_factory.cc |
@@ -48,9 +48,10 @@ const char kSuggestionsProviderFieldTrialEnabledPrefix[] = "Enabled"; |
// Returns whether the user is part of a group where the Suggestions provider is |
// enabled. |
bool IsSuggestionsSearchProviderEnabled() { |
- return base::StartsWithASCII( |
+ return base::StartsWith( |
base::FieldTrialList::FindFullName(kSuggestionsProviderFieldTrialName), |
- kSuggestionsProviderFieldTrialEnabledPrefix, true); |
+ kSuggestionsProviderFieldTrialEnabledPrefix, |
+ base::CompareCase::SENSITIVE); |
} |
} // namespace |