Chromium Code Reviews| Index: ui/message_center/notification.cc |
| diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc |
| index 2b248a006b435d256c9fe1e34f3a5240c80aaa3a..865ac6c7e34e4c4ed0db3018e07230b76d71e644 100644 |
| --- a/ui/message_center/notification.cc |
| +++ b/ui/message_center/notification.cc |
| @@ -38,7 +38,8 @@ RichNotificationData::RichNotificationData() |
| pinned(false), |
| #endif // defined(OS_CHROMEOS) |
| renotify(false), |
| - silent(false) {} |
| + silent(false), |
| + accessible_name(base::string16()) {} |
|
yoshiki
2016/09/07 08:29:34
nit: no need to initialize explicitly.
yhanada
2016/09/07 08:52:26
Done.
|
| RichNotificationData::RichNotificationData(const RichNotificationData& other) |
| : priority(other.priority), |
| @@ -58,7 +59,8 @@ RichNotificationData::RichNotificationData(const RichNotificationData& other) |
| #endif // defined(OS_CHROMEOS) |
| vibration_pattern(other.vibration_pattern), |
| renotify(other.renotify), |
| - silent(other.silent) {} |
| + silent(other.silent), |
| + accessible_name(other.accessible_name) {} |
| RichNotificationData::~RichNotificationData() {} |