| Index: components/omnibox/scored_history_match.cc
|
| diff --git a/components/omnibox/scored_history_match.cc b/components/omnibox/scored_history_match.cc
|
| index 2914f7d6fa3c70c8daaede215e3f3b9c955984c7..5f05d342b7c979dc0edc3de4c8087f5112f0e8ab 100644
|
| --- a/components/omnibox/scored_history_match.cc
|
| +++ b/components/omnibox/scored_history_match.cc
|
| @@ -194,7 +194,7 @@ ScoredHistoryMatch::ScoredHistoryMatch(
|
| // For a URL like "http://www.washingtonmutual.com", this means
|
| // typing "w" will inline "ashington..." instead of "ww.washington...".
|
| if (!url_matches.empty() && (terms_vector.size() == 1) &&
|
| - !IsWhitespace(*lower_string.rbegin())) {
|
| + !base::IsUnicodeWhitespace(*lower_string.rbegin())) {
|
| const base::string16 gurl_spec = base::UTF8ToUTF16(gurl.spec());
|
| const URLPrefix* best_inlineable_prefix =
|
| URLPrefix::BestURLPrefix(gurl_spec, terms_vector[0]);
|
|
|