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 4a9fbf2ca87604001a70d9dcc57e719ccde9ae60..b50893ef57f9626547816956192c6f430c2262cc 100644 |
--- a/chrome/browser/autocomplete/history_url_provider.cc |
+++ b/chrome/browser/autocomplete/history_url_provider.cc |
@@ -893,6 +893,7 @@ AutocompleteMatch HistoryURLProvider::HistoryMatchToACMatch( |
const history::URLRow& info = history_match.url_info; |
AutocompleteMatch match(this, relevance, |
!!info.visit_count(), AutocompleteMatch::HISTORY_URL); |
+ match.typed_count = info.typed_count(); |
match.destination_url = info.url(); |
DCHECK(match.destination_url.is_valid()); |
size_t inline_autocomplete_offset = |