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

Side by Side Diff: ios/chrome/browser/passwords/credential_manager.h

Issue 2133953002: PasswordForm -> FormDigest for GetLogins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@413020_ssl_valid
Patch Set: Nits addressed Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_ 5 #ifndef IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_
6 #define IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_ 6 #define IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // password_manager::CredentialManagerPendingRequestTaskDelegate: 57 // password_manager::CredentialManagerPendingRequestTaskDelegate:
58 bool IsZeroClickAllowed() const override; 58 bool IsZeroClickAllowed() const override;
59 GURL GetOrigin() const override; 59 GURL GetOrigin() const override;
60 void SendCredential( 60 void SendCredential(
61 const password_manager::SendCredentialCallback& send_callback, 61 const password_manager::SendCredentialCallback& send_callback,
62 const password_manager::CredentialInfo& credential) override; 62 const password_manager::CredentialInfo& credential) override;
63 void SendPasswordForm( 63 void SendPasswordForm(
64 const password_manager::SendCredentialCallback& send_callback, 64 const password_manager::SendCredentialCallback& send_callback,
65 const autofill::PasswordForm* form) override; 65 const autofill::PasswordForm* form) override;
66 password_manager::PasswordManagerClient* client() const override; 66 password_manager::PasswordManagerClient* client() const override;
67 autofill::PasswordForm GetSynthesizedFormForOrigin() const override; 67 password_manager::PasswordStore::FormDigest GetSynthesizedFormForOrigin()
68 const override;
68 69
69 // password_manager::CredentialManagerPendingRequireUserMediationTaskDelegate: 70 // password_manager::CredentialManagerPendingRequireUserMediationTaskDelegate:
70 password_manager::PasswordStore* GetPasswordStore() override; 71 password_manager::PasswordStore* GetPasswordStore() override;
71 void DoneRequiringUserMediation() override; 72 void DoneRequiringUserMediation() override;
72 73
73 // CredentialManagerPasswordFormManagerDelegate: 74 // CredentialManagerPasswordFormManagerDelegate:
74 void OnProvisionalSaveComplete() override; 75 void OnProvisionalSaveComplete() override;
75 76
76 private: 77 private:
77 // The errors that can cause a request to fail. 78 // The errors that can cause a request to fail.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 // Whether zero-click sign-in is enabled. 130 // Whether zero-click sign-in is enabled.
130 BooleanPrefMember zero_click_sign_in_enabled_; 131 BooleanPrefMember zero_click_sign_in_enabled_;
131 132
132 // Weak pointer factory for asynchronously resolving requests. 133 // Weak pointer factory for asynchronously resolving requests.
133 base::WeakPtrFactory<CredentialManager> weak_factory_; 134 base::WeakPtrFactory<CredentialManager> weak_factory_;
134 135
135 DISALLOW_COPY_AND_ASSIGN(CredentialManager); 136 DISALLOW_COPY_AND_ASSIGN(CredentialManager);
136 }; 137 };
137 138
138 #endif // IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_ 139 #endif // IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_
OLDNEW
« no previous file with comments | « components/password_manager/core/browser/test_password_store.cc ('k') | ios/chrome/browser/passwords/credential_manager.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698