| Index: chrome/browser/ui/views/message_center/web_notification_tray_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/message_center/web_notification_tray_browsertest.cc b/chrome/browser/ui/views/message_center/web_notification_tray_browsertest.cc
|
| index 1a1889c9f6b786ed734a06bad6edd09358190094..6e95b0b80a4fa455bdcbaa722f932cfc9fbd9291 100644
|
| --- a/chrome/browser/ui/views/message_center/web_notification_tray_browsertest.cc
|
| +++ b/chrome/browser/ui/views/message_center/web_notification_tray_browsertest.cc
|
| @@ -136,7 +136,7 @@
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(WebNotificationTrayTest, WebNotificationPopupBubble) {
|
| - scoped_ptr<WebNotificationTray> tray(new WebNotificationTray(NULL));
|
| + scoped_ptr<WebNotificationTray> tray(new WebNotificationTray());
|
| tray->message_center();
|
|
|
| // Adding a notification should show the popup bubble.
|
| @@ -162,7 +162,7 @@
|
| // Flaky, see http://crbug.com/222500 .
|
| IN_PROC_BROWSER_TEST_F(WebNotificationTrayTest,
|
| DISABLED_ManyMessageCenterNotifications) {
|
| - scoped_ptr<WebNotificationTray> tray(new WebNotificationTray(NULL));
|
| + scoped_ptr<WebNotificationTray> tray(new WebNotificationTray());
|
| message_center::MessageCenter* message_center = tray->message_center();
|
|
|
| // Add the max visible notifications +1, ensure the correct visible number.
|
| @@ -183,7 +183,7 @@
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(WebNotificationTrayTest, ManyPopupNotifications) {
|
| - scoped_ptr<WebNotificationTray> tray(new WebNotificationTray(NULL));
|
| + scoped_ptr<WebNotificationTray> tray(new WebNotificationTray());
|
| message_center::MessageCenter* message_center = tray->message_center();
|
|
|
| // Add the max visible popup notifications +1, ensure the correct num visible.
|
|
|