| Index: ui/message_center/notification.cc
|
| diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc
|
| index 9de5ccb36759a070141fd26e28d497438e4c71be..3ef68dd83839a032204952c4e446a6293972de75 100644
|
| --- a/ui/message_center/notification.cc
|
| +++ b/ui/message_center/notification.cc
|
| @@ -34,6 +34,7 @@ RichNotificationData::RichNotificationData()
|
| progress(0),
|
| should_make_spoken_feedback_for_popup_updates(true),
|
| clickable(true),
|
| + closable(true),
|
| silent(false) {}
|
|
|
| RichNotificationData::RichNotificationData(const RichNotificationData& other)
|
| @@ -49,6 +50,7 @@ RichNotificationData::RichNotificationData(const RichNotificationData& other)
|
| should_make_spoken_feedback_for_popup_updates(
|
| other.should_make_spoken_feedback_for_popup_updates),
|
| clickable(other.clickable),
|
| + closable(other.closable),
|
| vibration_pattern(other.vibration_pattern),
|
| silent(other.silent) {}
|
|
|
|
|