Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1008)

Unified Diff: ui/message_center/notification.cc

Issue 2318463002: arc: Make ChromeVox read an ARC custom notification (Closed)
Patch Set: remove unused field and include Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {}

Powered by Google App Engine
This is Rietveld 408576698