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

Unified Diff: chrome/browser/password_manager/account_chooser_infobar_delegate_android.h

Issue 861103002: Credentials chooser UI for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/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..443f70652f59902145ea4828719bbcb4b7a9cd93
--- /dev/null
+++ b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h
@@ -0,0 +1,59 @@
+// 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 "base/memory/scoped_vector.h"
Peter Kasting 2015/02/16 20:37:07 Nit: This #include isn't needed, the type in quest
melandory 2015/02/17 16:16:58 Done.
+#include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h"
+#include "components/infobars/core/infobar_delegate.h"
+
+namespace content {
+class WebContents;
+}
+
+namespace password_manager {
+enum class CredentialType : unsigned int;
+}
+
+namespace autofill {
+struct PasswordForm;
+}
+
+// Android-only infobar to notify that the generated password was saved.
Peter Kasting 2015/02/16 20:37:07 This comment doesn't sound correct. It sounds lik
melandory 2015/02/17 16:16:58 Done.
+class AccountChooserInfoBarDelegateAndroid : public infobars::InfoBarDelegate {
+ public:
+ // Creates and shows the infobar. Implemented in the platform-specific file.
Peter Kasting 2015/02/16 20:37:07 Nit: Please follow other infobar delegates' commen
melandory 2015/02/17 16:16:58 Done.
+ static void Create(content::WebContents* web_contents,
Peter Kasting 2015/02/16 20:37:07 Pass an InfoBarService* instead of a WebContents*.
melandory 2015/02/17 16:16:58 Done.
+ ManagePasswordsUIController* ui_controller);
+
+ ~AccountChooserInfoBarDelegateAndroid() override = default;
+
+ const ScopedVector<autofill::PasswordForm>& local_credentials_forms() const {
+ return ui_controller_->local_credentials_forms();
+ }
+
+ void choose_credential(unsigned int credential_index,
Peter Kasting 2015/02/16 20:37:07 "unsigned int" is banned by the Google style guide
melandory 2015/02/17 16:16:57 Done.
+ password_manager::CredentialType credential_type);
+
+ private:
+ explicit AccountChooserInfoBarDelegateAndroid(
+ ManagePasswordsUIController* ui_controller);
+
+ // InfoBarDelegate implementation:
Peter Kasting 2015/02/16 20:37:07 Nit: Prefix "InfoBarDelegate" with "infobars::" an
melandory 2015/02/17 16:16:58 Done.
+ Type GetInfoBarType() const override;
+ AccountChooserInfoBarDelegateAndroid* AsAccountChooserInfoBarDelegateAndroid()
+ override;
+
+ // TODO(melandory): It looks like ManagePasswordUIController has logic which
+ // should be extracted from it (storing data, propagating user actions), as
+ // for example TranslateUIDelegate does it.
Peter Kasting 2015/02/16 20:37:07 Nit: This comment sounds like it belongs in Manage
melandory 2015/02/17 16:16:58 Removed it for now.
+ // AccountChooserInfoBarDelegateAndroid doesn't own this pointer.
Peter Kasting 2015/02/16 20:37:07 So who does own it? "Owned by ____" would be shor
melandory 2015/02/17 16:16:58 Done.
+ ManagePasswordsUIController* ui_controller_;
+
+ DISALLOW_COPY_AND_ASSIGN(AccountChooserInfoBarDelegateAndroid);
+};
+
+#endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_INFOBAR_DELEGATE_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698