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

Unified Diff: components/password_manager/content/browser/credential_manager_impl.h

Issue 2867743002: Use OnceCallback on Mojo interfaces in //components/password_manager (Closed)
Patch Set: . Created 3 years, 7 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
« no previous file with comments | « no previous file | components/password_manager/content/browser/credential_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/password_manager/content/browser/credential_manager_impl.h
diff --git a/components/password_manager/content/browser/credential_manager_impl.h b/components/password_manager/content/browser/credential_manager_impl.h
index 3b3f5cd97ba6db38bb440c68a73e98bf3bcfbb8f..9694627d07c7b49b2c654e835cb6ac78ccfbc795 100644
--- a/components/password_manager/content/browser/credential_manager_impl.h
+++ b/components/password_manager/content/browser/credential_manager_impl.h
@@ -50,14 +50,12 @@ class CredentialManagerImpl
void BindRequest(mojom::CredentialManagerRequest request);
// mojom::CredentialManager methods:
- void Store(const CredentialInfo& credential,
- const StoreCallback& callback) override;
- void RequireUserMediation(
- const RequireUserMediationCallback& callback) override;
+ void Store(const CredentialInfo& credential, StoreCallback callback) override;
+ void RequireUserMediation(RequireUserMediationCallback callback) override;
void Get(bool zero_click_only,
bool include_passwords,
const std::vector<GURL>& federations,
- const GetCallback& callback) override;
+ GetCallback callback) override;
// CredentialManagerPendingRequestTaskDelegate:
bool IsZeroClickAllowed() const override;
« no previous file with comments | « no previous file | components/password_manager/content/browser/credential_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698