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

Unified Diff: components/favicon_base/fallback_icon_style.cc

Issue 1382343002: Select dark colors for generating fallback icon if possible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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: components/favicon_base/fallback_icon_style.cc
diff --git a/components/favicon_base/fallback_icon_style.cc b/components/favicon_base/fallback_icon_style.cc
index a3aa658cad2bc12b42426521faf1208babf5f655..0670fe1a51e6930079950b56e37282672e6df8af 100644
--- a/components/favicon_base/fallback_icon_style.cc
+++ b/components/favicon_base/fallback_icon_style.cc
@@ -63,10 +63,17 @@ bool ValidateFallbackIconStyle(const FallbackIconStyle& style) {
void SetDominantColorAsBackground(
const scoped_refptr<base::RefCountedMemory>& bitmap_data,
FallbackIconStyle* style) {
- SkColor dominant_color =
- color_utils::CalculateKMeanColorOfPNG(bitmap_data);
- // Assumes |style.text_color| is light, and clamps luminance down to a
- // reasonable maximum value so text is readable.
+ // Try to ensure color's luminance isn't too large so that light text is
+ // visible. Set an upper bound for the dominant color.
+ const color_utils::HSL lower_bound{-1.0, -1.0, 0.15};
pkotwicz 2015/10/05 14:23:27 Is there a reason 0.15 is not a constant?
mpawlowski 2015/10/05 14:28:26 Not rally, it's just the same number as the one us
pkotwicz 2015/10/05 14:46:21 I don't have much of a preference because color_an
+ const color_utils::HSL upper_bound{-1.0, -1.0, kMaxBackgroundColorLuminance};
+ color_utils::GridSampler sampler;
+ SkColor dominant_color = color_utils::CalculateKMeanColorOfPNG(
+ bitmap_data, lower_bound, upper_bound, &sampler);
+ // |CalculateKMeanColorOfPNG| will try to return a color that lies within the
+ // specified bounds if one exists in the image. If there's no such color, it
+ // will return the dominant color which may be lighter than our upper bound.
+ // Clamp luminance down to a reasonable maximum value so text is readable.
color_utils::HSL color_hsl;
color_utils::SkColorToHSL(dominant_color, &color_hsl);
color_hsl.l = std::min(color_hsl.l, kMaxBackgroundColorLuminance);
« 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