| Index: chrome/browser/search/hotword_service.cc
|
| diff --git a/chrome/browser/search/hotword_service.cc b/chrome/browser/search/hotword_service.cc
|
| index d1d67a798c3bf313a857e6cd7afd868c4022aa2c..54f54b568c84a5fc7a505bd478ddee9dc19da0b9 100644
|
| --- a/chrome/browser/search/hotword_service.cc
|
| +++ b/chrome/browser/search/hotword_service.cc
|
| @@ -173,7 +173,7 @@ const char kHotwordUnusablePrefName[] = "hotword.search_enabled";
|
| bool HotwordService::DoesHotwordSupportLanguage(Profile* profile) {
|
| std::string normalized_locale =
|
| l10n_util::NormalizeLocale(GetCurrentLocale(profile));
|
| - StringToLowerASCII(&normalized_locale);
|
| + base::StringToLowerASCII(&normalized_locale);
|
|
|
| for (size_t i = 0; i < arraysize(kSupportedLocales); i++) {
|
| if (normalized_locale.compare(0, 2, kSupportedLocales[i]) == 0)
|
|
|