| Index: ash/system/web_notification/web_notification_tray_unittest.cc
|
| diff --git a/ash/system/web_notification/web_notification_tray_unittest.cc b/ash/system/web_notification/web_notification_tray_unittest.cc
|
| index 0319032b3fd883325868612b0446417fec668b18..7240a2a538a9fbb7592c40803e0a41dc9f47bd3a 100644
|
| --- a/ash/system/web_notification/web_notification_tray_unittest.cc
|
| +++ b/ash/system/web_notification/web_notification_tray_unittest.cc
|
| @@ -82,7 +82,7 @@ TEST_F(WebNotificationTrayTest, WebNotifications) {
|
|
|
| // Adding a notification should show the bubble.
|
| delegate->AddNotification(tray, "test_id1");
|
| - EXPECT_TRUE(tray->bubble() != NULL);
|
| + EXPECT_TRUE(tray->notification_bubble() != NULL);
|
| EXPECT_EQ(1, tray->GetNotificationCount());
|
| delegate->AddNotification(tray, "test_id2");
|
| delegate->AddNotification(tray, "test_id2");
|
| @@ -97,7 +97,7 @@ TEST_F(WebNotificationTrayTest, WebNotifications) {
|
| // Removing the last notification should hide the bubble.
|
| delegate->RemoveNotification(tray, "test_id1");
|
| EXPECT_EQ(0, tray->GetNotificationCount());
|
| - EXPECT_TRUE(tray->bubble() == NULL);
|
| + EXPECT_TRUE(tray->notification_bubble() == NULL);
|
| }
|
|
|
| } // namespace ash
|
|
|