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

Unified Diff: chrome/browser/password_manager/account_chooser_infobar_delegate_android.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
« no previous file with comments | « no previous file | chrome/browser/ui/android/infobars/account_chooser_infobar.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
diff --git a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
index face0fe81040d474fbac82c4c38040945136be38..a3b587d82f6f14bd595ea5c8b9ae595a90e54338 100644
--- a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
+++ b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
@@ -34,10 +34,10 @@ void AccountChooserInfoBarDelegateAndroid::ChooseCredential(
ui_controller_->ChooseCredential(autofill::PasswordForm(), credential_type);
return;
}
- DCHECK(credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL ||
+ DCHECK(credential_type == CredentialType::CREDENTIAL_TYPE_PASSWORD ||
credential_type == CredentialType::CREDENTIAL_TYPE_FEDERATED);
const auto& credentials_forms =
- (credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL)
+ (credential_type == CredentialType::CREDENTIAL_TYPE_PASSWORD)
? ui_controller_->GetCurrentForms()
: ui_controller_->GetFederatedForms();
if (credential_index < credentials_forms.size()) {
« no previous file with comments | « no previous file | chrome/browser/ui/android/infobars/account_chooser_infobar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698