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

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

Issue 2552263002: Pass InteractionStats by value (Closed)
Patch Set: ={} Created 4 years 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_manager_unittest.cc
diff --git a/components/password_manager/core/browser/password_manager_unittest.cc b/components/password_manager/core/browser/password_manager_unittest.cc
index ba29bfe09c9e254b1d9001af8c6b4c46a378632c..c698f128594d93e0a7788e212b8a933c5d4d8220 100644
--- a/components/password_manager/core/browser/password_manager_unittest.cc
+++ b/components/password_manager/core/browser/password_manager_unittest.cc
@@ -122,7 +122,7 @@ class PasswordManagerTest : public testing::Test {
EXPECT_CALL(client_, GetPasswordStore())
.WillRepeatedly(Return(store_.get()));
- EXPECT_CALL(*store_, GetSiteStatsMock(_)).Times(AnyNumber());
+ EXPECT_CALL(*store_, GetSiteStatsImpl(_)).Times(AnyNumber());
EXPECT_CALL(client_, GetDriver()).WillRepeatedly(Return(&driver_));
manager_.reset(new PasswordManager(&client_));

Powered by Google App Engine
This is Rietveld 408576698