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

Unified Diff: components/password_manager/core/browser/test_password_store.cc

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/test_password_store.cc
diff --git a/components/password_manager/core/browser/test_password_store.cc b/components/password_manager/core/browser/test_password_store.cc
index a420e9e707b206bb4714f78c015b8beca60d3764..60f2536ba5af16a3393c15ca38e32a81bfdad1d2 100644
--- a/components/password_manager/core/browser/test_password_store.cc
+++ b/components/password_manager/core/browser/test_password_store.cc
@@ -139,4 +139,15 @@ bool TestPasswordStore::FillBlacklistLogins(
return true;
}
+void TestPasswordStore::AddSiteStatsImpl(const InteractionsStats& stats) {
+}
+
+void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) {
+}
+
+scoped_ptr<InteractionsStats> TestPasswordStore::GetSiteStatsImpl(
+ const GURL& origin_domain) {
+ return scoped_ptr<InteractionsStats>();
+}
+
} // namespace password_manager
« no previous file with comments | « components/password_manager/core/browser/test_password_store.h ('k') | components/test/data/password_manager/login_db_v12.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698