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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.cc

Issue 19531006: requestAutocomplete: fix some text colors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: +PreferredSizeChanged override Created 7 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
Index: chrome/browser/ui/autofill/autofill_dialog_types.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc
index 1230c532577b70aa513465c3a50e9b4d1868b008..6a2a4a26c4f9c089df2063eb25a917499867070a 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -50,7 +50,7 @@ SkColor DialogNotification::GetTextColor() const {
case DialogNotification::REQUIRED_ACTION:
case DialogNotification::WALLET_ERROR:
case DialogNotification::AUTOCHECKOUT_ERROR:
- return SK_ColorBLACK;
+ return SkColorSetRGB(102, 102, 102);
case DialogNotification::AUTOCHECKOUT_SUCCESS:
case DialogNotification::DEVELOPER_WARNING:
case DialogNotification::EXPLANATORY_MESSAGE:

Powered by Google App Engine
This is Rietveld 408576698