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

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

Issue 355143006: [Password Manager] Add UMA stats to track interaction with synced accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 6 years, 6 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 3d95037751a32def97a4beab0f08cf8a94dc1886..1f5205c0bc0872668fb93a3aedd0157c3b388420 100644
--- a/components/password_manager/core/browser/mock_password_store.h
+++ b/components/password_manager/core/browser/mock_password_store.h
@@ -26,8 +26,8 @@ class MockPasswordStore : public PasswordStore {
PasswordStoreConsumer*));
MOCK_METHOD1(AddLogin, void(const autofill::PasswordForm&));
MOCK_METHOD1(UpdateLogin, void(const autofill::PasswordForm&));
- MOCK_METHOD0(ReportMetrics, void());
- MOCK_METHOD0(ReportMetricsImpl, void());
+ MOCK_METHOD1(ReportMetrics, void(const std::string&));
+ MOCK_METHOD1(ReportMetricsImpl, void(const std::string&));
MOCK_METHOD1(AddLoginImpl,
PasswordStoreChangeList(const autofill::PasswordForm&));
MOCK_METHOD1(UpdateLoginImpl,

Powered by Google App Engine
This is Rietveld 408576698