Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7213)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.cc

Issue 12893007: Implementing VERIFY_CVV required action. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698