| Index: ui/app_list/search/history.cc
|
| diff --git a/ui/app_list/search/history.cc b/ui/app_list/search/history.cc
|
| index 7d38bb269a07761bdc3c481ec5b29990ec816b60..6c540246ff7b220f0b554406d77502a7b91eba59 100644
|
| --- a/ui/app_list/search/history.cc
|
| +++ b/ui/app_list/search/history.cc
|
| @@ -17,8 +17,7 @@
|
| // Normalize the given string by joining all its tokens with a space.
|
| std::string NormalizeString(const std::string& utf8) {
|
| TokenizedString tokenized(base::UTF8ToUTF16(utf8));
|
| - return base::UTF16ToUTF8(
|
| - base::JoinString(tokenized.tokens(), base::ASCIIToUTF16(" ")));
|
| + return base::UTF16ToUTF8(JoinString(tokenized.tokens(), ' '));
|
| }
|
|
|
| } // namespace
|
|
|