Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/password_manager/account_chooser_infobar_delegate_andro id.h" | |
| 6 | |
| 7 #include "chrome/browser/infobars/infobar_service.h" | |
| 8 #include "chrome/browser/ui/android/infobars/account_chooser_infobar.h" | |
| 9 #include "components/autofill/core/common/password_form.h" | |
| 10 #include "components/password_manager/content/common/credential_manager_types.h" | |
| 11 | |
| 12 // static | |
| 13 void AccountChooserInfoBarDelegateAndroid::Create( | |
| 14 InfoBarService* infobar_service, | |
| 15 ManagePasswordsUIController* ui_controller) { | |
| 16 infobar_service->AddInfoBar( | |
| 17 make_scoped_ptr(new AccountChooserInfoBar(make_scoped_ptr( | |
| 18 new AccountChooserInfoBarDelegateAndroid(ui_controller))))); | |
| 19 } | |
| 20 | |
| 21 AccountChooserInfoBarDelegateAndroid::AccountChooserInfoBarDelegateAndroid( | |
| 22 ManagePasswordsUIController* ui_controller) | |
| 23 : ui_controller_(ui_controller) { | |
| 24 } | |
| 25 | |
| 26 void AccountChooserInfoBarDelegateAndroid::ChooseCredential( | |
| 27 size_t credential_index, | |
| 28 password_manager::CredentialType credential_type) { | |
| 29 using namespace password_manager; | |
| 30 DCHECK(credential_type == CredentialType::CREDENTIAL_TYPE_EMPTY || | |
| 31 credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL || | |
| 32 credential_type == CredentialType::CREDENTIAL_TYPE_FEDERATED); | |
|
Peter Kasting
2015/02/18 21:44:17
How about:
if (credential_type == CredentialTyp
melandory
2015/02/19 13:38:01
Done.
| |
| 33 if (credential_type == CredentialType::CREDENTIAL_TYPE_EMPTY) { | |
| 34 ui_controller_->ChooseCredential(autofill::PasswordForm(), credential_type); | |
| 35 } else { | |
| 36 auto& credentials_forms = | |
| 37 (credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL) | |
| 38 ? ui_controller_->local_credentials_forms() | |
| 39 : ui_controller_->federated_credentials_forms(); | |
| 40 if (credential_index < credentials_forms.size()) { | |
| 41 ui_controller_->ChooseCredential(*credentials_forms[credential_index], | |
| 42 credential_type); | |
| 43 } | |
| 44 } | |
| 45 } | |
| 46 | |
| 47 infobars::InfoBarDelegate::Type | |
| 48 AccountChooserInfoBarDelegateAndroid::GetInfoBarType() const { | |
| 49 return PAGE_ACTION_TYPE; | |
| 50 } | |
| OLD | NEW |