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

Unified Diff: chrome/browser/password_manager/password_store_mac_unittest.cc

Issue 894583003: Rename PasswordForm::is_zero_click to PasswordForm::skip_next_zero_click. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix linux Created 5 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: chrome/browser/password_manager/password_store_mac_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_mac_unittest.cc b/chrome/browser/password_manager/password_store_mac_unittest.cc
index 29a3f90f6c8b93e0ad1f891d6ce2f87c928d97a8..4576c28f5885068bfb66c43baa48c5612cbacf7d 100644
--- a/chrome/browser/password_manager/password_store_mac_unittest.cc
+++ b/chrome/browser/password_manager/password_store_mac_unittest.cc
@@ -255,7 +255,7 @@ static PasswordForm* CreatePasswordFormFromData(
if (form_data.username_value) {
form->username_value = WideToUTF16(form_data.username_value);
form->display_name = form->username_value;
- form->is_zero_click = true;
+ form->skip_zero_click = true;
if (form_data.password_value)
form->password_value = WideToUTF16(form_data.password_value);
} else {
@@ -307,7 +307,7 @@ static void CheckFormsAgainstExpectations(
form->username_value) << test_label;
EXPECT_EQ(WideToUTF16(expectation->username_value),
form->display_name) << test_label;
- EXPECT_TRUE(form->is_zero_click) << test_label;
+ EXPECT_TRUE(form->skip_zero_click) << test_label;
EXPECT_EQ(WideToUTF16(expectation->password_value),
form->password_value) << test_label;
} else {
« no previous file with comments | « chrome/browser/password_manager/native_backend_libsecret_unittest.cc ('k') | components/autofill/core/common/password_form.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698