| Index: ash/system/chromeos/screen_security/screen_capture_tray_item.cc
|
| diff --git a/ash/system/chromeos/screen_security/screen_capture_tray_item.cc b/ash/system/chromeos/screen_security/screen_capture_tray_item.cc
|
| index a5c40c01cdf756176e34a6dd2f22691f17966614..6dc83601c19758a457663fc059981c040e4e4a62 100644
|
| --- a/ash/system/chromeos/screen_security/screen_capture_tray_item.cc
|
| +++ b/ash/system/chromeos/screen_security/screen_capture_tray_item.cc
|
| @@ -58,17 +58,13 @@ void ScreenCaptureTrayItem::CreateOrUpdateNotification() {
|
| l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_SCREEN_CAPTURE_STOP)));
|
| ui::ResourceBundle& resource_bundle = ui::ResourceBundle::GetSharedInstance();
|
| scoped_ptr<Notification> notification(new Notification(
|
| - message_center::NOTIFICATION_TYPE_SIMPLE,
|
| - kScreenCaptureNotificationId,
|
| - screen_capture_status_,
|
| - base::string16() /* body is blank */,
|
| + message_center::NOTIFICATION_TYPE_SIMPLE, kScreenCaptureNotificationId,
|
| + screen_capture_status_, base::string16() /* body is blank */,
|
| resource_bundle.GetImageNamed(IDR_AURA_UBER_TRAY_SCREENSHARE_DARK),
|
| - base::string16() /* display_source */,
|
| - message_center::NotifierId(
|
| - message_center::NotifierId::SYSTEM_COMPONENT,
|
| - system_notifier::kNotifierScreenCapture),
|
| - data,
|
| - new tray::ScreenNotificationDelegate(this)));
|
| + base::string16() /* display_source */, GURL(),
|
| + message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT,
|
| + system_notifier::kNotifierScreenCapture),
|
| + data, new tray::ScreenNotificationDelegate(this)));
|
| notification->SetSystemPriority();
|
| message_center::MessageCenter::Get()->AddNotification(notification.Pass());
|
| }
|
|
|