Index: chrome/browser/autocomplete/autocomplete_match.cc |
diff --git a/chrome/browser/autocomplete/autocomplete_match.cc b/chrome/browser/autocomplete/autocomplete_match.cc |
index 9e9dd72c45f2b1311382a0f8c2d5f447044784c5..83e688e517865e76da607ac2d5e451b7f68a8065 100644 |
--- a/chrome/browser/autocomplete/autocomplete_match.cc |
+++ b/chrome/browser/autocomplete/autocomplete_match.cc |
@@ -75,6 +75,7 @@ AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match) |
deletable(match.deletable), |
fill_into_edit(match.fill_into_edit), |
inline_autocomplete_offset(match.inline_autocomplete_offset), |
+ gray_suggestion(match.gray_suggestion), |
destination_url(match.destination_url), |
stripped_destination_url(match.stripped_destination_url), |
contents(match.contents), |
@@ -109,6 +110,7 @@ AutocompleteMatch& AutocompleteMatch::operator=( |
deletable = match.deletable; |
fill_into_edit = match.fill_into_edit; |
inline_autocomplete_offset = match.inline_autocomplete_offset; |
+ gray_suggestion = match.gray_suggestion; |
destination_url = match.destination_url; |
stripped_destination_url = match.stripped_destination_url; |
contents = match.contents; |