| Index: chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.mm
|
| diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.mm b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.mm
|
| index 936ce5751103fb1b3bf15a41aa3f1b6258b4b182..9cef5fa94b8881782b13833c328a813140648e63 100644
|
| --- a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.mm
|
| +++ b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.mm
|
| @@ -526,9 +526,9 @@ NSAttributedString* CreateClassifiedAttributedString(
|
| match.GetAdditionalInfo(kACMatchPropertyContentsStartIndex),
|
| &contentsStartIndex);
|
| // Ignore invalid state.
|
| - if (!StartsWith(match.fill_into_edit, inputText, true)
|
| - || !EndsWith(match.fill_into_edit, match.contents, true)
|
| - || ((size_t)contentsStartIndex >= inputText.length())) {
|
| + if (!base::StartsWith(match.fill_into_edit, inputText, true) ||
|
| + !EndsWith(match.fill_into_edit, match.contents, true) ||
|
| + ((size_t)contentsStartIndex >= inputText.length())) {
|
| return 0;
|
| }
|
| bool isContentsRTL = (base::i18n::RIGHT_TO_LEFT ==
|
|
|