| Index: chrome/browser/ui/libgtk2ui/native_theme_gtk2.cc
|
| diff --git a/chrome/browser/ui/libgtk2ui/native_theme_gtk2.cc b/chrome/browser/ui/libgtk2ui/native_theme_gtk2.cc
|
| index ba709bee19430cfb33b7ab45b4d08c76095b4200..c8876f81b0afa8190dbccc96877c542720249f7d 100644
|
| --- a/chrome/browser/ui/libgtk2ui/native_theme_gtk2.cc
|
| +++ b/chrome/browser/ui/libgtk2ui/native_theme_gtk2.cc
|
| @@ -331,21 +331,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:
|
|
|