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

Unified Diff: chrome/browser/ui/passwords/manage_passwords_state_unittest.cc

Issue 1162583003: Credential Management: Rename 'LocalCredential' to 'PasswordCredential' (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@drop
Patch Set: Fix. Created 5 years, 7 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/passwords/manage_passwords_state_unittest.cc
diff --git a/chrome/browser/ui/passwords/manage_passwords_state_unittest.cc b/chrome/browser/ui/passwords/manage_passwords_state_unittest.cc
index 3a12071e559d6eaba9f19d0f51f68781503ba4e0..3a0dccc8753a13e099e9803405900ec0ee94b47d 100644
--- a/chrome/browser/ui/passwords/manage_passwords_state_unittest.cc
+++ b/chrome/browser/ui/passwords/manage_passwords_state_unittest.cc
@@ -246,7 +246,7 @@ TEST_F(ManagePasswordsStateTest, OnRequestCredentials) {
password_manager::CredentialInfo credential_info(
test_local_form(),
- password_manager::CredentialType::CREDENTIAL_TYPE_LOCAL);
+ password_manager::CredentialType::CREDENTIAL_TYPE_PASSWORD);
EXPECT_CALL(*this, OnChooseCredential(_))
.WillOnce(testing::SaveArg<0>(&credential_info));
passwords_data().TransitionToState(password_manager::ui::MANAGE_STATE);
@@ -469,7 +469,7 @@ TEST_F(ManagePasswordsStateTest, RequestCredentialsToBlacklisted) {
password_manager::PasswordStoreChange::ADD, blacklisted));
password_manager::CredentialInfo credential_info(
test_local_form(),
- password_manager::CredentialType::CREDENTIAL_TYPE_LOCAL);
+ password_manager::CredentialType::CREDENTIAL_TYPE_PASSWORD);
EXPECT_CALL(*this, OnChooseCredential(_))
.WillOnce(testing::SaveArg<0>(&credential_info));
passwords_data().ProcessLoginsChanged(list);

Powered by Google App Engine
This is Rietveld 408576698