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

Unified Diff: components/password_manager/core/browser/mock_password_store.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/mock_password_store.h
diff --git a/components/password_manager/core/browser/mock_password_store.h b/components/password_manager/core/browser/mock_password_store.h
index 0af74d67b9afd85ff4461a9262f517eb732d520e..cace2b6bb0ebaebf51689eac5729e90558253c43 100644
--- a/components/password_manager/core/browser/mock_password_store.h
+++ b/components/password_manager/core/browser/mock_password_store.h
@@ -38,8 +38,9 @@ class MockPasswordStore : public PasswordStore {
void(const autofill::PasswordForm& form,
PasswordStore::AuthorizationPromptPolicy prompt_policy,
const ConsumerCallbackRunner& callback_runner));
- MOCK_METHOD1(GetAutofillableLoginsImpl, void(GetLoginsRequest*));
- MOCK_METHOD1(GetBlacklistLoginsImpl, void(GetLoginsRequest*));
+ void GetAutofillableLoginsImpl(
+ scoped_ptr<GetLoginsRequest> request) override {}
+ void GetBlacklistLoginsImpl(scoped_ptr<GetLoginsRequest> request) override {}
MOCK_METHOD1(FillAutofillableLogins,
bool(ScopedVector<autofill::PasswordForm>*));
MOCK_METHOD1(FillBlacklistLogins,

Powered by Google App Engine
This is Rietveld 408576698