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

Unified Diff: components/autofill/core/browser/autofill_field.cc

Issue 1686063004: Sending generated vote on password generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed reviewers comments Created 4 years, 10 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: components/autofill/core/browser/autofill_field.cc
diff --git a/components/autofill/core/browser/autofill_field.cc b/components/autofill/core/browser/autofill_field.cc
index 754ec0175be74bfcf416f6c51d84048fdc0f2eaf..1fd22d6335bb6c5586a8d72aa7f6bbe336c72ded 100644
--- a/components/autofill/core/browser/autofill_field.cc
+++ b/components/autofill/core/browser/autofill_field.cc
@@ -443,7 +443,8 @@ AutofillField::AutofillField()
html_mode_(HTML_MODE_NONE),
phone_part_(IGNORED),
credit_card_number_offset_(0),
- previously_autofilled_(false) {}
+ previously_autofilled_(false),
+ generation_type_(NO_GENERATION) {}
AutofillField::AutofillField(const FormFieldData& field,
const base::string16& unique_name)
@@ -456,7 +457,8 @@ AutofillField::AutofillField(const FormFieldData& field,
phone_part_(IGNORED),
credit_card_number_offset_(0),
previously_autofilled_(false),
- parseable_name_(field.name) {}
+ parseable_name_(field.name),
+ generation_type_(NO_GENERATION) {}
AutofillField::~AutofillField() {}

Powered by Google App Engine
This is Rietveld 408576698