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

Unified Diff: components/autofill/core/common/form_data_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/common/form_data_unittest.cc
diff --git a/components/autofill/core/common/form_data_unittest.cc b/components/autofill/core/common/form_data_unittest.cc
index a025420e22823343cf7661f456851a317e8895b8..ee174b715eb926faed4246d1b63e63bf22aa5c3f 100644
--- a/components/autofill/core/common/form_data_unittest.cc
+++ b/components/autofill/core/common/form_data_unittest.cc
@@ -115,8 +115,7 @@ void FillInDummyFormData(FormData* data) {
field_data.autocomplete_attribute = "off";
field_data.max_length = 200;
field_data.is_autofilled = true;
- field_data.is_checked = true;
- field_data.is_checkable = true;
+ field_data.check_status = FormFieldData::CheckStatus::CHECKED;
field_data.is_focusable = true;
field_data.should_autocomplete = false;
field_data.text_direction = base::i18n::RIGHT_TO_LEFT;
« no previous file with comments | « components/autofill/core/browser/form_structure_unittest.cc ('k') | components/autofill/core/common/form_field_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698