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

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

Issue 2132063002: Implement origin-based deletion for password manager's auto-signin bit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed PasswordStoreMac 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 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 0c127f70ea810d17906b0b2e44f94df27d8e69aa..1806d66b6624a45ecf7812dc0b8e3c9cfc25a8ba 100644
--- a/components/password_manager/core/browser/mock_password_store.h
+++ b/components/password_manager/core/browser/mock_password_store.h
@@ -45,7 +45,9 @@ class MockPasswordStore : public PasswordStore {
PasswordStoreChangeList(base::Time, base::Time));
MOCK_METHOD2(RemoveStatisticsCreatedBetweenImpl,
bool(base::Time, base::Time));
- MOCK_METHOD0(DisableAutoSignInForAllLoginsImpl, PasswordStoreChangeList());
+ MOCK_METHOD1(
+ DisableAutoSignInForOriginsImpl,
+ PasswordStoreChangeList(const base::Callback<bool(const GURL&)>&));
ScopedVector<autofill::PasswordForm> FillMatchingLogins(
const autofill::PasswordForm& form) override {
return ScopedVector<autofill::PasswordForm>();

Powered by Google App Engine
This is Rietveld 408576698