| 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 69b988e9b0e89e304b5494468a840f127585efe7..e144fe999ff46d81ff614d9b6e05f83a1155d43d 100644
|
| --- a/ash/system/web_notification/web_notification_tray_unittest.cc
|
| +++ b/ash/system/web_notification/web_notification_tray_unittest.cc
|
| @@ -63,15 +63,18 @@ class WebNotificationTrayTest : public test::AshTestBase {
|
| ASCIIToUTF16("Notification message body."),
|
| ASCIIToUTF16("www.test.org"),
|
| "" /* extension id */,
|
| - NULL /* optional_fields */);
|
| + NULL /* optional_fields */,
|
| + NULL /* delegate */);
|
| }
|
|
|
| void UpdateNotification(const std::string& old_id,
|
| const std::string& new_id) {
|
| GetMessageCenter()->UpdateNotification(
|
| - old_id, new_id,
|
| + old_id,
|
| + new_id,
|
| ASCIIToUTF16("Updated Web Notification"),
|
| ASCIIToUTF16("Updated message body."),
|
| + NULL,
|
| NULL);
|
| }
|
|
|
|
|