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

Unified Diff: components/password_manager/core/browser/password_store_consumer.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/password_store_consumer.cc
diff --git a/components/password_manager/core/browser/password_store_consumer.cc b/components/password_manager/core/browser/password_store_consumer.cc
index da62aed78e51390b7b0039a186df460b8fa391be..8347f2b6b4ba1735d13f04875af9e8a53fb27d3c 100644
--- a/components/password_manager/core/browser/password_store_consumer.cc
+++ b/components/password_manager/core/browser/password_store_consumer.cc
@@ -4,6 +4,8 @@
#include "components/password_manager/core/browser/password_store_consumer.h"
+#include "components/password_manager/core/browser/statistics_table.h"
+
namespace password_manager {
PasswordStoreConsumer::PasswordStoreConsumer() : weak_ptr_factory_(this) {
@@ -12,4 +14,8 @@ PasswordStoreConsumer::PasswordStoreConsumer() : weak_ptr_factory_(this) {
PasswordStoreConsumer::~PasswordStoreConsumer() {
}
+void PasswordStoreConsumer::OnGetSiteStatistics(
+ scoped_ptr<InteractionsStats> stats) {
+}
+
} // namespace password_manager

Powered by Google App Engine
This is Rietveld 408576698