Index: chrome/browser/ui/views/profiles/profile_chooser_view.cc |
diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view.cc b/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
index b6a9c1cd47887091bf6e63d52c509a070ee7e829..7039777e9d73747b580ed6e10b28b17d87e20baf 100644 |
--- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
+++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
@@ -220,8 +220,7 @@ class BackgroundColorHoverButton : public views::LabelButton { |
void OnPaint(gfx::Canvas* canvas) override { |
if ((state() == STATE_PRESSED) || |
(state() == STATE_HOVERED)) { |
- canvas->DrawColor(GetNativeTheme()->GetSystemColor( |
- ui::NativeTheme::kColorId_ButtonHoverBackgroundColor)); |
+ canvas->DrawColor(SkColorSetRGB(0xEA, 0xEA, 0xEA)); |
sky
2016/10/03 16:12:05
Why is a hard coded color good here?
Evan Stade
2016/10/03 19:46:44
a) we don't need it to vary depending on the nativ
|
} |
LabelButton::OnPaint(canvas); |
} |