| Index: components/omnibox/browser/search_suggestion_parser.cc
|
| diff --git a/components/omnibox/browser/search_suggestion_parser.cc b/components/omnibox/browser/search_suggestion_parser.cc
|
| index 30543fc3dbbc3f658ae1ff47ab2aec21b245c1f4..11fbdbbbc22c353b735d641f13454a499034211c 100644
|
| --- a/components/omnibox/browser/search_suggestion_parser.cc
|
| +++ b/components/omnibox/browser/search_suggestion_parser.cc
|
| @@ -151,8 +151,7 @@
|
| // contents, and the input text has an overlap with contents.
|
| if (base::StartsWith(suggestion_, input_text,
|
| base::CompareCase::SENSITIVE) &&
|
| - base::EndsWith(suggestion_, match_contents_,
|
| - base::CompareCase::SENSITIVE) &&
|
| + base::EndsWith(suggestion_, match_contents_, true) &&
|
| (input_text.length() > contents_index)) {
|
| lookup_text = input_text.substr(contents_index);
|
| }
|
|
|