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

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

Issue 1840033003: Fix iOS compilation after https://codereview.chromium.org/1832933002/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 8 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
« no previous file with comments | « no previous file | ios/chrome/browser/passwords/credential_manager.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const web::Credential& credential) override; 53 const web::Credential& credential) override;
54 void SignedOut(int request_id, const GURL& source_url) override; 54 void SignedOut(int request_id, const GURL& source_url) override;
55 void WebStateDestroyed() override; 55 void WebStateDestroyed() override;
56 56
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 int id, 61 int id,
62 const password_manager::CredentialInfo& credential) override; 62 const password_manager::CredentialInfo& credential) override;
63 void SendPasswordForm(int id, const autofill::PasswordForm* form) override;
63 password_manager::PasswordManagerClient* client() const override; 64 password_manager::PasswordManagerClient* client() const override;
64 autofill::PasswordForm GetSynthesizedFormForOrigin() const override; 65 autofill::PasswordForm GetSynthesizedFormForOrigin() const override;
65 66
66 // password_manager::CredentialManagerPendingRequireUserMediationTaskDelegate: 67 // password_manager::CredentialManagerPendingRequireUserMediationTaskDelegate:
67 password_manager::PasswordStore* GetPasswordStore() override; 68 password_manager::PasswordStore* GetPasswordStore() override;
68 void DoneRequiringUserMediation() override; 69 void DoneRequiringUserMediation() override;
69 70
70 // CredentialManagerPasswordFormManagerDelegate: 71 // CredentialManagerPasswordFormManagerDelegate:
71 void OnProvisionalSaveComplete() override; 72 void OnProvisionalSaveComplete() override;
72 73
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // Whether zero-click sign-in is enabled. 123 // Whether zero-click sign-in is enabled.
123 BooleanPrefMember zero_click_sign_in_enabled_; 124 BooleanPrefMember zero_click_sign_in_enabled_;
124 125
125 // Weak pointer factory for asynchronously resolving requests. 126 // Weak pointer factory for asynchronously resolving requests.
126 base::WeakPtrFactory<CredentialManager> weak_factory_; 127 base::WeakPtrFactory<CredentialManager> weak_factory_;
127 128
128 DISALLOW_COPY_AND_ASSIGN(CredentialManager); 129 DISALLOW_COPY_AND_ASSIGN(CredentialManager);
129 }; 130 };
130 131
131 #endif // IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_ 132 #endif // IOS_CHROME_BROWSER_PASSWORDS_CREDENTIAL_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/passwords/credential_manager.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698