| Index: chrome/browser/ui/passwords/manage_passwords_state.h
|
| diff --git a/chrome/browser/ui/passwords/manage_passwords_state.h b/chrome/browser/ui/passwords/manage_passwords_state.h
|
| index 30348c5cde238850100b07238807510c02b30986..62de5447b4da34f8fa56b890ec47e2032c69d3f3 100644
|
| --- a/chrome/browser/ui/passwords/manage_passwords_state.h
|
| +++ b/chrome/browser/ui/passwords/manage_passwords_state.h
|
| @@ -53,7 +53,6 @@ class ManagePasswordsState {
|
| // Move to CREDENTIAL_REQUEST_STATE.
|
| void OnRequestCredentials(
|
| std::vector<std::unique_ptr<autofill::PasswordForm>> local_credentials,
|
| - std::vector<std::unique_ptr<autofill::PasswordForm>> federation_providers,
|
| const GURL& origin);
|
|
|
| // Move to AUTO_SIGNIN_STATE. |local_forms| can't be empty.
|
| @@ -110,12 +109,6 @@ class ManagePasswordsState {
|
| return local_credentials_forms_;
|
| }
|
|
|
| - // Current federated forms.
|
| - const std::vector<std::unique_ptr<autofill::PasswordForm>>&
|
| - federation_providers_forms() const {
|
| - return federation_providers_forms_;
|
| - }
|
| -
|
| private:
|
| // Removes all the PasswordForms stored in this object.
|
| void ClearData();
|
| @@ -139,10 +132,6 @@ class ManagePasswordsState {
|
| // Contains all the current forms.
|
| std::vector<std::unique_ptr<autofill::PasswordForm>> local_credentials_forms_;
|
|
|
| - // Federation providers for the CREDENTIAL_REQUEST_STATE.
|
| - std::vector<std::unique_ptr<autofill::PasswordForm>>
|
| - federation_providers_forms_;
|
| -
|
| // A callback to be invoked when user selects a credential.
|
| CredentialsCallback credentials_callback_;
|
|
|
|
|