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

Unified Diff: ui/message_center/message_center_style.cc

Issue 23462005: Adds the contextMessage field to notifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/message_center_style.cc
diff --git a/ui/message_center/message_center_style.cc b/ui/message_center/message_center_style.cc
index 0289a96c7f2fa9fb9346eed3af59edd8748aa7cf..db86d3e0702afd54e5074750d7b311f675d011da 100644
--- a/ui/message_center/message_center_style.cc
+++ b/ui/message_center/message_center_style.cc
@@ -38,12 +38,15 @@ const int kTitleFontSize = 14;
const int kTitleLineHeight = 20;
const int kMessageFontSize = 12;
const int kMessageLineHeight = 18;
+const int kContextMessageFontSize = 12;
+const int kContextMessageLineHeight = 18;
// Colors.
const SkColor kNotificationBackgroundColor = SkColorSetRGB(255, 255, 255);
const SkColor kLegacyIconBackgroundColor = SkColorSetRGB(0xf5, 0xf5, 0xf5);
const SkColor kRegularTextColor = SkColorSetRGB(34, 34, 34);
const SkColor kDimTextColor = SkColorSetRGB(102, 102, 102);
+const SkColor kContextTextColor = SkColorSetRGB(80, 80, 80);
const SkColor kFocusBorderColor = SkColorSetRGB(64, 128, 250);
// Limits.

Powered by Google App Engine
This is Rietveld 408576698