Index: chrome/browser/autocomplete/autocomplete_match.cc |
diff --git a/chrome/browser/autocomplete/autocomplete_match.cc b/chrome/browser/autocomplete/autocomplete_match.cc |
index 46bbd6b288a5f13e08f410a0b546578b3ec7e36e..6911e44bd07ac8a03ee2715575240a3b4e46e422 100644 |
--- a/chrome/browser/autocomplete/autocomplete_match.cc |
+++ b/chrome/browser/autocomplete/autocomplete_match.cc |
@@ -81,6 +81,8 @@ AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match) |
contents_class(match.contents_class), |
description(match.description), |
description_class(match.description_class), |
+ answer_contents(match.answer_contents), |
+ answer_type(match.answer_type), |
transition(match.transition), |
is_history_what_you_typed_match(match.is_history_what_you_typed_match), |
type(match.type), |
@@ -117,6 +119,8 @@ AutocompleteMatch& AutocompleteMatch::operator=( |
contents_class = match.contents_class; |
description = match.description; |
description_class = match.description_class; |
+ answer_contents = match.answer_contents; |
+ answer_type = match.answer_type; |
transition = match.transition; |
is_history_what_you_typed_match = match.is_history_what_you_typed_match; |
type = match.type; |