| Index: chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.cc b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| index 3241c501163689d13357b0ffe8a89cfe3f46f368..0ddffb724f6c636bf80b614d422b1c8e4481ba16 100644
|
| --- a/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| +++ b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| @@ -1282,7 +1282,7 @@ base::string16 OmniboxEditModel::DisplayTextFromUserText(
|
|
|
| base::string16 OmniboxEditModel::UserTextFromDisplayText(
|
| const base::string16& text) const {
|
| - return KeywordIsSelected() ? (keyword_ + char16(' ') + text) : text;
|
| + return KeywordIsSelected() ? (keyword_ + base::char16(' ') + text) : text;
|
| }
|
|
|
| void OmniboxEditModel::GetInfoForCurrentText(AutocompleteMatch* match,
|
|
|