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 a7049d186d98dc24b1e72f7865cc513affdf6957..717629bfbdb6706c9e62313414a57e4a369df0ad 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc |
@@ -62,4 +62,16 @@ bool DialogNotification::HasCheckbox() const { |
return type_ == DialogNotification::WALLET_PROMO; |
} |
+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 |