| Index: chrome/browser/ui/libgtkui/native_theme_gtk.cc
|
| diff --git a/chrome/browser/ui/libgtkui/native_theme_gtk.cc b/chrome/browser/ui/libgtkui/native_theme_gtk.cc
|
| index 8a0a23a2aa0bd5798789048313aeea80c5b82b6d..9d1cd67f6209031d19eb06148881daa73f681097 100644
|
| --- a/chrome/browser/ui/libgtkui/native_theme_gtk.cc
|
| +++ b/chrome/browser/ui/libgtkui/native_theme_gtk.cc
|
| @@ -322,20 +322,18 @@ SkColor NativeThemeGtk2::GetSystemColor(ColorId color_id) const {
|
| return GetTextColor(GetEntry(), ACTIVE);
|
| case kColorId_TextfieldReadOnlyBackground:
|
| return GetBaseColor(GetEntry(), ACTIVE);
|
| - case kColorId_TextfieldSelectionColor:
|
| - return GetTextColor(GetEntry(), SELECTED);
|
| - case kColorId_TextfieldSelectionBackgroundFocused:
|
| - return GetBaseColor(GetEntry(), SELECTED);
|
| #else
|
| case kColorId_TextfieldReadOnlyColor:
|
| return GetTextColor(GetEntry(), SELECTED);
|
| case kColorId_TextfieldReadOnlyBackground:
|
| return GetBaseColor(GetEntry(), SELECTED);
|
| +#endif
|
| case kColorId_TextfieldSelectionColor:
|
| return GetTextColor(GetLabel(), SELECTED);
|
| case kColorId_TextfieldSelectionBackgroundFocused:
|
| return GetBaseColor(GetLabel(), SELECTED);
|
| -#endif
|
| + case kColorId_TextfieldSelectionBackgroundUnfocused:
|
| + return GetBaseColor(GetLabel(), INSENSITIVE);
|
|
|
| // Tooltips
|
| case kColorId_TooltipBackground:
|
|
|