| 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 df2d4cd21c47e118207296066666d53eabec206d..afe642297a995e5a167163675b5ee347e5a6c8db 100644
|
| --- a/chrome/browser/autocomplete/history_url_provider.cc
|
| +++ b/chrome/browser/autocomplete/history_url_provider.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/browser/autocomplete/autocomplete_match.h"
|
| #include "chrome/browser/autocomplete/autocomplete_provider_listener.h"
|
| #include "chrome/browser/autocomplete/autocomplete_result.h"
|
| +#include "chrome/browser/bookmarks/bookmark_utils.h"
|
| #include "chrome/browser/history/history_backend.h"
|
| #include "chrome/browser/history/history_database.h"
|
| #include "chrome/browser/history/history_service.h"
|
| @@ -1149,7 +1150,7 @@ int HistoryURLProvider::CalculateRelevanceScoreUsingScoringParams(
|
| ACMatchClassifications HistoryURLProvider::ClassifyDescription(
|
| const base::string16& input_text,
|
| const base::string16& description) {
|
| - base::string16 clean_description = history::CleanUpTitleForMatching(
|
| + base::string16 clean_description = bookmark_utils::CleanUpTitleForMatching(
|
| description);
|
| history::TermMatches description_matches(SortAndDeoverlapMatches(
|
| history::MatchTermInString(input_text, clean_description, 0)));
|
|
|