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

Unified Diff: ui/message_center/notification.cc

Issue 2143653007: Remove icon bg color for message center notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « ui/message_center/notification.h ('k') | ui/message_center/views/notification_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/notification.cc
diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc
index b2ddd52568c491e65d2f602a4931499b9fc0e17e..2b248a006b435d256c9fe1e34f3a5240c80aaa3a 100644
--- a/ui/message_center/notification.cc
+++ b/ui/message_center/notification.cc
@@ -77,7 +77,6 @@ Notification::Notification(NotificationType type,
title_(title),
message_(message),
icon_(icon),
- draw_icon_background_(true),
display_source_(display_source),
origin_url_(origin_url),
notifier_id_(notifier_id),
@@ -93,7 +92,6 @@ Notification::Notification(const std::string& id, const Notification& other)
title_(other.title_),
message_(other.message_),
icon_(other.icon_),
- draw_icon_background_(other.draw_icon_background_),
display_source_(other.display_source_),
origin_url_(other.origin_url_),
notifier_id_(other.notifier_id_),
@@ -109,7 +107,6 @@ Notification::Notification(const Notification& other)
title_(other.title_),
message_(other.message_),
icon_(other.icon_),
- draw_icon_background_(other.draw_icon_background_),
display_source_(other.display_source_),
origin_url_(other.origin_url_),
notifier_id_(other.notifier_id_),
@@ -125,7 +122,6 @@ Notification& Notification::operator=(const Notification& other) {
title_ = other.title_;
message_ = other.message_;
icon_ = other.icon_;
- draw_icon_background_ = other.draw_icon_background_;
display_source_ = other.display_source_;
origin_url_ = other.origin_url_;
notifier_id_ = other.notifier_id_;
« no previous file with comments | « ui/message_center/notification.h ('k') | ui/message_center/views/notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698