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

Unified Diff: ui/message_center/notification.cc

Issue 2318463002: arc: Make ChromeVox read an ARC custom notification (Closed)
Patch Set: cleanup 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..f78307a246a7a119e014540ae6d16e83e7d9ed51 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() {}
yoshiki 2016/09/07 08:57:46 nit: you can remove this change completely. We don
yhanada 2016/09/07 09:08:03 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