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

Unified Diff: components/password_manager/core/browser/password_store_default.h

Issue 866983003: GetLoginsRequest: Use ScopedVector to express ownership of forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@324291_scopedvector
Patch Set: Second fix of the rebase Created 5 years, 10 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
Index: components/password_manager/core/browser/password_store_default.h
diff --git a/components/password_manager/core/browser/password_store_default.h b/components/password_manager/core/browser/password_store_default.h
index 2bb234051b8f762130228988a604a3c18a718ca9..972e82b06ac5db8ae9e0d588db3bf513da0d8634 100644
--- a/components/password_manager/core/browser/password_store_default.h
+++ b/components/password_manager/core/browser/password_store_default.h
@@ -53,8 +53,8 @@ class PasswordStoreDefault : public PasswordStore {
void GetLoginsImpl(const autofill::PasswordForm& form,
AuthorizationPromptPolicy prompt_policy,
const ConsumerCallbackRunner& callback_runner) override;
- void GetAutofillableLoginsImpl(GetLoginsRequest* request) override;
- void GetBlacklistLoginsImpl(GetLoginsRequest* request) override;
+ void GetAutofillableLoginsImpl(scoped_ptr<GetLoginsRequest> request) override;
+ void GetBlacklistLoginsImpl(scoped_ptr<GetLoginsRequest> request) override;
bool FillAutofillableLogins(
ScopedVector<autofill::PasswordForm>* forms) override;
bool FillBlacklistLogins(

Powered by Google App Engine
This is Rietveld 408576698