| Index: chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
|
| diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc b/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
|
| index 370731a7ea41f70104b7f9083caf7d1dda339ec0..3b9b89eed78153e9dba2777b97a157deb88c539f 100644
|
| --- a/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
|
| +++ b/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
|
| @@ -256,6 +256,7 @@ TEST_F(ManagePasswordsBubbleModelTest, CloseWithoutInteraction) {
|
| stats.dismissal_count++;
|
| stats.update_time = now;
|
| EXPECT_CALL(*GetStore(), AddSiteStatsImpl(stats));
|
| + EXPECT_CALL(*controller(), OnNoInteraction());
|
| EXPECT_CALL(*controller(), SavePassword()).Times(0);
|
| EXPECT_CALL(*controller(), NeverSavePassword()).Times(0);
|
| DestroyModelExpectReason(
|
| @@ -330,6 +331,7 @@ TEST_F(ManagePasswordsBubbleModelTest, ShowSmartLockWarmWelcome) {
|
|
|
| EXPECT_TRUE(model()->ShouldShowGoogleSmartLockWelcome());
|
| EXPECT_CALL(*GetStore(), AddSiteStatsImpl(_));
|
| + EXPECT_CALL(*controller(), OnNoInteraction());
|
| DestroyModel();
|
| PretendPasswordWaiting();
|
|
|
| @@ -350,6 +352,7 @@ TEST_F(ManagePasswordsBubbleModelTest, OmitSmartLockWarmWelcome) {
|
|
|
| EXPECT_FALSE(model()->ShouldShowGoogleSmartLockWelcome());
|
| EXPECT_CALL(*GetStore(), AddSiteStatsImpl(_));
|
| + EXPECT_CALL(*controller(), OnNoInteraction());
|
| DestroyModel();
|
| PretendPasswordWaiting();
|
|
|
|
|