Index: chrome/browser/ui/autofill/autofill_dialog_types.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc |
index 9a29c92bcc991c2dfe1a895724063ddce30ad50b..b07b790e96afba0d665befc2918233e9f6c7e4c8 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc |
@@ -65,4 +65,16 @@ bool DialogNotification::HasCheckbox() const { |
return type_ == DialogNotification::WALLET_USAGE_CONFIRMATION; |
} |
+SuggestionState::SuggestionState(const string16& text, |
+ const gfx::Image& icon, |
+ const string16& extra_text, |
+ const gfx::Image& extra_icon, |
+ bool editable) |
+ : text(text), |
+ icon(icon), |
+ extra_text(extra_text), |
+ extra_icon(extra_icon), |
+ editable(editable) {} |
+SuggestionState::~SuggestionState() {} |
+ |
} // namespace autofill |