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

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

Issue 2022123002: Merge autofill::FormFieldData::is_checkable and is_checked (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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_metrics_unittest.cc
diff --git a/components/autofill/core/browser/autofill_metrics_unittest.cc b/components/autofill/core/browser/autofill_metrics_unittest.cc
index b114b09c17ac233d6f3c3d1d7df069f5cb08fa77..e3ac080b3cada734e62810ce6e0ac0bb00a0d57a 100644
--- a/components/autofill/core/browser/autofill_metrics_unittest.cc
+++ b/components/autofill/core/browser/autofill_metrics_unittest.cc
@@ -3761,7 +3761,7 @@ class AutofillMetricsParseQueryResponseTest : public testing::Test {
FormFieldData checkable_field;
checkable_field.label = ASCIIToUTF16("radio_button");
checkable_field.form_control_type = "radio";
- checkable_field.is_checkable = true;
+ SetCheckStatus(&checkable_field, true, false);
vabr (Chromium) 2016/06/06 12:39:30 Please assign directly: checkable_field.check_stat
form.fields.push_back(checkable_field);
forms_.push_back(new FormStructure(form));

Powered by Google App Engine
This is Rietveld 408576698