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 9d2a4fd9589060dc77053d1693a62dff616bb756..c7cc760c816cd0889420cf5aa0bcbc5154af754f 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 |
@@ -64,11 +64,10 @@ class WebNotificationTrayTest : public InProcessBrowserTest { |
void AddNotification(const std::string& id, const std::string& replace_id) { |
::Notification notification(GURL("chrome-extension://abbccedd"), |
- GURL(), |
base::ASCIIToUTF16("Test Web Notification"), |
base::ASCIIToUTF16( |
"Notification message body."), |
- blink::WebTextDirectionDefault, |
+ gfx::Image(), |
base::string16(), |
base::ASCIIToUTF16(replace_id), |
new TestNotificationDelegate(id)); |
@@ -80,16 +79,15 @@ class WebNotificationTrayTest : public InProcessBrowserTest { |
void UpdateNotification(const std::string& replace_id, |
const std::string& new_id) { |
::Notification notification(GURL("chrome-extension://abbccedd"), |
- GURL(""), |
base::ASCIIToUTF16("Updated Web Notification"), |
base::ASCIIToUTF16("Updated message body."), |
- blink::WebTextDirectionDefault, |
+ gfx::Image(), |
base::string16(), |
base::ASCIIToUTF16(replace_id), |
new TestNotificationDelegate(new_id)); |
- g_browser_process->notification_ui_manager()->Add( |
- notification, browser()->profile()); |
+ g_browser_process->notification_ui_manager()->Add(notification, |
+ browser()->profile()); |
} |
void RemoveNotification(const std::string& id) { |