| Index: chrome/browser/autocomplete/zero_suggest_provider.cc
|
| diff --git a/chrome/browser/autocomplete/zero_suggest_provider.cc b/chrome/browser/autocomplete/zero_suggest_provider.cc
|
| index 66b8658553f4366a74babc6fd1b24399f3bac4a5..be22896f086737135081e278b06b107778f38844 100644
|
| --- a/chrome/browser/autocomplete/zero_suggest_provider.cc
|
| +++ b/chrome/browser/autocomplete/zero_suggest_provider.cc
|
| @@ -316,8 +316,9 @@ void ZeroSuggestProvider::FillResults(
|
| }
|
| } else {
|
| suggest_results->push_back(SearchProvider::SuggestResult(
|
| - result, result, string16(), std::string(), false, relevance,
|
| - relevances != NULL, false));
|
| + result, AutocompleteMatchType::SEARCH_SUGGEST, result,
|
| + ACMatchClassifications(), string16(), ACMatchClassifications(),
|
| + std::string(), false, relevance, relevances != NULL, false));
|
| }
|
| }
|
| }
|
| @@ -343,7 +344,8 @@ void ZeroSuggestProvider::AddMatchToMap(int relevance,
|
| // of passing in -1.
|
| AutocompleteMatch match = SearchProvider::CreateSearchSuggestion(
|
| this, AutocompleteInput(), query_string, relevance, type, false,
|
| - query_string, string16(), template_url, query_string, std::string(),
|
| + query_string, ACMatchClassifications(), string16(),
|
| + ACMatchClassifications(), template_url, query_string, std::string(),
|
| accepted_suggestion, -1, true);
|
| if (!match.destination_url.is_valid())
|
| return;
|
|
|