Index: components/omnibox/autocomplete_match.cc |
diff --git a/components/omnibox/autocomplete_match.cc b/components/omnibox/autocomplete_match.cc |
index 558ed93c417838a47d571751bb9febce2e7b83d4..2020a2f9ffa5874a0fa076e9a092df4af4ccbece 100644 |
--- a/components/omnibox/autocomplete_match.cc |
+++ b/components/omnibox/autocomplete_match.cc |
@@ -79,6 +79,7 @@ AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match) |
description_class(match.description_class), |
answer_contents(match.answer_contents), |
answer_type(match.answer_type), |
+ answer(match.answer), |
transition(match.transition), |
is_history_what_you_typed_match(match.is_history_what_you_typed_match), |
type(match.type), |
@@ -116,6 +117,7 @@ AutocompleteMatch& AutocompleteMatch::operator=( |
description_class = match.description_class; |
answer_contents = match.answer_contents; |
answer_type = match.answer_type; |
+ answer = match.answer; |
transition = match.transition; |
is_history_what_you_typed_match = match.is_history_what_you_typed_match; |
type = match.type; |