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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java

Issue 2804143002: Make the answers text color more consistent. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java
index 35a9a7b239488b785bcc87647b8f6b7247fb3060..c287471e3cee61ea7283f10b9b452c17c6bd2c99 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/AnswerTextBuilder.java
@@ -4,7 +4,6 @@
package org.chromium.chrome.browser.omnibox;
-import android.graphics.Color;
import android.graphics.Paint;
import android.text.Html;
import android.text.Spannable;
@@ -64,11 +63,10 @@ class AnswerTextBuilder {
private static final int ANSWERS_DESCRIPTION_TEXT_POSITIVE_COLOR = 0xFF0B8043;
private static final int ANSWERS_SUGGESTION_TEXT_COLOR =
SuggestionView.TITLE_COLOR_STANDARD_FONT_DARK;
- private static final int ANSWERS_PERSONALIZED_SUGGESTION_TEXT_COLOR = Color.BLACK;
- private static final int ANSWERS_ANSWER_TEXT_MEDIUM_COLOR =
- SuggestionView.TITLE_COLOR_STANDARD_FONT_DARK;
- private static final int ANSWERS_ANSWER_TEXT_LARGE_COLOR =
+ private static final int ANSWERS_PERSONALIZED_SUGGESTION_TEXT_COLOR =
SuggestionView.TITLE_COLOR_STANDARD_FONT_DARK;
+ private static final int ANSWERS_ANSWER_TEXT_MEDIUM_COLOR = 0xFF8A8A8A;
+ private static final int ANSWERS_ANSWER_TEXT_LARGE_COLOR = 0xFF8A8A8A;
private static final int ANSWERS_SECONDARY_TEXT_SMALL_COLOR = 0xFF8A8A8A;
private static final int ANSWERS_SECONDARY_TEXT_MEDIUM_COLOR = 0xFF8A8A8A;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698