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

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

Issue 1083293004: Implement the statistics table for the passwords. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address the comments Created 5 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 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 70f54e915850d6db833ece5a7e1e41395f3d6b95..7b76b91822ed48fd9ecdd4f9efc04184966e6e3d 100644
--- a/components/password_manager/core/browser/mock_password_store.h
+++ b/components/password_manager/core/browser/mock_password_store.h
@@ -47,6 +47,12 @@ class MockPasswordStore : public PasswordStore {
MOCK_METHOD1(FillBlacklistLogins,
bool(ScopedVector<autofill::PasswordForm>*));
MOCK_METHOD1(NotifyLoginsChanged, void(const PasswordStoreChangeList&));
+ void AddSiteStatsImpl(const InteractionsStats& stats) override {}
+ void RemoveSiteStatsImpl(const GURL& origin_domain) override {}
+ scoped_ptr<InteractionsStats> GetSiteStatsImpl(
+ const GURL& origin_domain) override {
+ return scoped_ptr<InteractionsStats>();
+ }
PasswordStoreSync* GetSyncInterface() { return this; }
« no previous file with comments | « components/password_manager/core/browser/login_database.cc ('k') | components/password_manager/core/browser/password_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698