diff options
Diffstat (limited to 'ui/message_center/notification.cc')
-rw-r--r-- | ui/message_center/notification.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc index eb4c8a8..6a90e30 100644 --- a/ui/message_center/notification.cc +++ b/ui/message_center/notification.cc @@ -28,7 +28,8 @@ RichNotificationData::RichNotificationData() : priority(DEFAULT_PRIORITY), never_timeout(false), timestamp(base::Time::Now()), - progress(0) {} + progress(0), + should_make_spoken_feedback_for_popup_updates(true) {} RichNotificationData::RichNotificationData(const RichNotificationData& other) : priority(other.priority), @@ -38,7 +39,9 @@ RichNotificationData::RichNotificationData(const RichNotificationData& other) image(other.image), items(other.items), progress(other.progress), - buttons(other.buttons) {} + buttons(other.buttons), + should_make_spoken_feedback_for_popup_updates( + other.should_make_spoken_feedback_for_popup_updates) {} RichNotificationData::~RichNotificationData() {} |