Chromium Code Reviews| Index: chrome/browser/password_manager/account_chooser_infobar_delegate_android.h |
| diff --git a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..48760b025f9a6bbad471489e62218d3dd192af26 |
| --- /dev/null |
| +++ b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h |
| @@ -0,0 +1,52 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_INFOBAR_DELEGATE_ANDROID_H_ |
| +#define CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_INFOBAR_DELEGATE_ANDROID_H_ |
| + |
| +#include "base/macros.h" |
| +#include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" |
| +#include "components/infobars/core/infobar_delegate.h" |
| + |
| +class InfoBarService; |
| + |
| +namespace password_manager { |
| +enum class CredentialType : unsigned int; |
| +} |
| + |
| +namespace autofill { |
| +struct PasswordForm; |
| +} |
| + |
| +// Android-only infobar to allow user to choose credentials for login. |
|
Peter Kasting
2015/02/18 00:23:05
Nit: Technically this is an infobar delegate, not
melandory
2015/02/18 21:15:34
Done.
|
| +class AccountChooserInfoBarDelegateAndroid : public infobars::InfoBarDelegate { |
| + public: |
| + // Creates an account chooser infobar and delegate and adds the infobar to |
| + // |infobar_service|. |
| + static void Create(InfoBarService* infobar_service, |
| + ManagePasswordsUIController* ui_controller); |
| + |
| + ~AccountChooserInfoBarDelegateAndroid() override = default; |
| + |
| + const ScopedVector<autofill::PasswordForm>& local_credentials_forms() const { |
| + return ui_controller_->local_credentials_forms(); |
| + } |
| + |
| + void ChooseCredential(size_t credential_index, |
| + password_manager::CredentialType credential_type); |
| + |
| + private: |
| + explicit AccountChooserInfoBarDelegateAndroid( |
| + ManagePasswordsUIController* ui_controller); |
| + |
| + // infobars::InfoBarDelegate |
|
Peter Kasting
2015/02/18 00:23:05
Nit: Need trailing colon
melandory
2015/02/18 21:15:34
Done.
|
| + Type GetInfoBarType() const override; |
| + |
| + // Owned by WebContents. |
| + ManagePasswordsUIController* ui_controller_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(AccountChooserInfoBarDelegateAndroid); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_INFOBAR_DELEGATE_ANDROID_H_ |