| Index: ash/system/chromeos/tray_display.cc
|
| diff --git a/ash/system/chromeos/tray_display.cc b/ash/system/chromeos/tray_display.cc
|
| index 6f4142b12366002df7c0186de5bb6302ae5a6267..1445d033d39309997bf3fb450caed5b45b64797c 100644
|
| --- a/ash/system/chromeos/tray_display.cc
|
| +++ b/ash/system/chromeos/tray_display.cc
|
| @@ -391,15 +391,12 @@ void TrayDisplay::CreateOrUpdateNotification(
|
|
|
| ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance();
|
| scoped_ptr<Notification> notification(new Notification(
|
| - message_center::NOTIFICATION_TYPE_SIMPLE,
|
| - kNotificationId,
|
| - message,
|
| - additional_message,
|
| - bundle.GetImageNamed(IDR_AURA_NOTIFICATION_DISPLAY),
|
| + message_center::NOTIFICATION_TYPE_SIMPLE, kNotificationId, message,
|
| + additional_message, bundle.GetImageNamed(IDR_AURA_NOTIFICATION_DISPLAY),
|
| base::string16(), // display_source
|
| - message_center::NotifierId(
|
| - message_center::NotifierId::SYSTEM_COMPONENT,
|
| - system_notifier::kNotifierDisplay),
|
| + GURL(),
|
| + message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT,
|
| + system_notifier::kNotifierDisplay),
|
| message_center::RichNotificationData(),
|
| new message_center::HandleNotificationClickedDelegate(
|
| base::Bind(&OpenSettings))));
|
|
|