| Index: ui/message_center/notification.cc
|
| diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc
|
| index 9de5ccb36759a070141fd26e28d497438e4c71be..2aebe8f1aee40ddcab8d0fa24cb9de12d6729aea 100644
|
| --- a/ui/message_center/notification.cc
|
| +++ b/ui/message_center/notification.cc
|
| @@ -34,7 +34,8 @@ RichNotificationData::RichNotificationData()
|
| progress(0),
|
| should_make_spoken_feedback_for_popup_updates(true),
|
| clickable(true),
|
| - silent(false) {}
|
| + silent(false),
|
| + renotify(false) {}
|
|
|
| RichNotificationData::RichNotificationData(const RichNotificationData& other)
|
| : priority(other.priority),
|
| @@ -50,7 +51,8 @@ RichNotificationData::RichNotificationData(const RichNotificationData& other)
|
| other.should_make_spoken_feedback_for_popup_updates),
|
| clickable(other.clickable),
|
| vibration_pattern(other.vibration_pattern),
|
| - silent(other.silent) {}
|
| + silent(other.silent),
|
| + renotify(other.renotify) {}
|
|
|
| RichNotificationData::~RichNotificationData() {}
|
|
|
|
|