| Index: chrome/browser/ui/app_list/search/history.cc
|
| diff --git a/chrome/browser/ui/app_list/search/history.cc b/chrome/browser/ui/app_list/search/history.cc
|
| index ec8fd005bed21379c1ccc90f0e506427a6e26af2..534fda7249fe2108442c23af1efeb2449f63f11a 100644
|
| --- a/chrome/browser/ui/app_list/search/history.cc
|
| +++ b/chrome/browser/ui/app_list/search/history.cc
|
| @@ -18,8 +18,8 @@ namespace {
|
|
|
| // Normalize the given string by joining all its tokens with a space.
|
| std::string NormalizeString(const std::string& utf8) {
|
| - TokenizedString tokenized(UTF8ToUTF16(utf8));
|
| - return UTF16ToUTF8(JoinString(tokenized.tokens(), ' '));
|
| + TokenizedString tokenized(base::UTF8ToUTF16(utf8));
|
| + return base::UTF16ToUTF8(JoinString(tokenized.tokens(), ' '));
|
| }
|
|
|
| } // namespace
|
|
|