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

Unified Diff: chrome/browser/ui/passwords/password_dialog_controller_impl.h

Issue 2531863002: Delete all the traces of federation providers in the account chooser. (Closed)
Patch Set: android2 Created 4 years, 1 month 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/password_dialog_controller_impl.h
diff --git a/chrome/browser/ui/passwords/password_dialog_controller_impl.h b/chrome/browser/ui/passwords/password_dialog_controller_impl.h
index e05ca89fee236079179581614431eb1c70b0f2d0..6a2d1b627c038252b926f1ae916979c48962de52 100644
--- a/chrome/browser/ui/passwords/password_dialog_controller_impl.h
+++ b/chrome/browser/ui/passwords/password_dialog_controller_impl.h
@@ -25,8 +25,7 @@ class PasswordDialogControllerImpl : public PasswordDialogController {
~PasswordDialogControllerImpl() override;
// Pop up the account chooser dialog.
- void ShowAccountChooser(AccountChooserPrompt* dialog,
- FormsVector locals, FormsVector federations);
+ void ShowAccountChooser(AccountChooserPrompt* dialog, FormsVector locals);
// Pop up the autosignin first run dialog.
void ShowAutosigninPrompt(AutoSigninFirstRunPrompt* dialog);
@@ -35,7 +34,6 @@ class PasswordDialogControllerImpl : public PasswordDialogController {
// PasswordDialogController:
const FormsVector& GetLocalForms() const override;
- const FormsVector& GetFederationsForms() const override;
std::pair<base::string16, gfx::Range> GetAccoutChooserTitle() const override;
bool ShouldShowSignInButton() const override;
base::string16 GetAutoSigninPromoTitle() const override;
@@ -58,7 +56,6 @@ class PasswordDialogControllerImpl : public PasswordDialogController {
AccountChooserPrompt* account_chooser_dialog_;
AutoSigninFirstRunPrompt* autosignin_dialog_;
std::vector<std::unique_ptr<autofill::PasswordForm>> local_credentials_;
- std::vector<std::unique_ptr<autofill::PasswordForm>> federated_credentials_;
DISALLOW_COPY_AND_ASSIGN(PasswordDialogControllerImpl);
};

Powered by Google App Engine
This is Rietveld 408576698