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

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

Issue 13625002: Change the behavior of the [X] Save details to Wallet checkbox notification to: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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 698afc2ffc0a9522d7521353ef57070c29545d1d..81902c1aec10e52b5b847902b2df994dda2a59bc 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -11,7 +11,10 @@ namespace autofill {
DialogNotification::DialogNotification() : type_(NONE) {}
DialogNotification::DialogNotification(Type type, const string16& display_text)
- : type_(type), display_text_(display_text), interactive_(true) {}
+ : type_(type),
+ display_text_(display_text),
+ checked_(false),
+ interactive_(true) {}
SkColor DialogNotification::GetBackgroundColor() const {
switch (type_) {
« no previous file with comments | « chrome/browser/ui/autofill/autofill_dialog_types.h ('k') | chrome/browser/ui/autofill/autofill_dialog_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698