| Index: chrome/browser/autocomplete/history_url_provider.cc
|
| diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc
|
| index 4b865e798319234676cc63590c60737fd9f510a5..1bf3261506f3a586de739be2b2c8b6aa1bfbe920 100644
|
| --- a/chrome/browser/autocomplete/history_url_provider.cc
|
| +++ b/chrome/browser/autocomplete/history_url_provider.cc
|
| @@ -706,14 +706,14 @@ ACMatchClassifications HistoryURLProvider::ClassifyDescription(
|
| const base::string16& description) {
|
| base::string16 clean_description =
|
| bookmarks::CleanUpTitleForMatching(description);
|
| - history::TermMatches description_matches(SortAndDeoverlapMatches(
|
| - history::MatchTermInString(input_text, clean_description, 0)));
|
| - history::WordStarts description_word_starts;
|
| - history::String16VectorFromString16(
|
| - clean_description, false, &description_word_starts);
|
| + TermMatches description_matches(SortAndDeoverlapMatches(
|
| + MatchTermInString(input_text, clean_description, 0)));
|
| + WordStarts description_word_starts;
|
| + String16VectorFromString16(clean_description, false,
|
| + &description_word_starts);
|
| // If HistoryURL retrieves any matches (and hence we reach this code), we
|
| // are guaranteed that the beginning of input_text must be a word break.
|
| - history::WordStarts offsets(1, 0u);
|
| + WordStarts offsets(1, 0u);
|
| description_matches =
|
| ScoredHistoryMatchBuilderImpl::FilterTermMatchesByWordStarts(
|
| description_matches, offsets, description_word_starts, 0,
|
|
|