Skip to content

Commit

Permalink
[MD] Fix omnibox row highlight color
Browse files Browse the repository at this point in the history
BUG=562691

Review URL: https://codereview.chromium.org/1485903002

Cr-Commit-Position: refs/heads/master@{#362474}
  • Loading branch information
estade authored and Commit bot committed Dec 1, 2015
1 parent ad47faa commit 4bb8a45
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions ui/native_theme/common_theme.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,13 @@ SkColor GetAuraColor(NativeTheme::ColorId color_id,

// Results Tables
case NativeTheme::kColorId_ResultsTableHoveredBackground:
return SkColorSetA(
base_theme->GetSystemColor(
NativeTheme::kColorId_ResultsTableNormalBackground),
0x0D);
return SkColorSetA(base_theme->GetSystemColor(
NativeTheme::kColorId_ResultsTableNormalText),
0x0D);
case NativeTheme::kColorId_ResultsTableSelectedBackground:
return SkColorSetA(
base_theme->GetSystemColor(
NativeTheme::kColorId_ResultsTableNormalBackground),
0x14);
return SkColorSetA(base_theme->GetSystemColor(
NativeTheme::kColorId_ResultsTableNormalText),
0x14);
case NativeTheme::kColorId_ResultsTableNormalText:
case NativeTheme::kColorId_ResultsTableHoveredText:
case NativeTheme::kColorId_ResultsTableSelectedText:
Expand Down

0 comments on commit 4bb8a45

Please sign in to comment.