| Index: ui/native_theme/native_theme_mac.mm
|
| diff --git a/ui/native_theme/native_theme_mac.mm b/ui/native_theme/native_theme_mac.mm
|
| index d0b304e12ce0766245510dff51425e3650f27a04..36a58dc1d810ba40479bf2b03a421c9b16c67f28 100644
|
| --- a/ui/native_theme/native_theme_mac.mm
|
| +++ b/ui/native_theme/native_theme_mac.mm
|
| @@ -159,6 +159,7 @@ SkColor ColorToGrayscale(SkColor color) {
|
| // background color for text selections. We honor that setting.
|
| // TODO(ellyjones): Listen for NSSystemColorsDidChangeNotification somewhere
|
| // and propagate it to the View hierarchy.
|
| + case kColorId_LabelTextSelectionBackgroundFocused:
|
| case kColorId_TextfieldSelectionBackgroundFocused:
|
| return NSSystemColorToSkColor([NSColor selectedTextBackgroundColor]);
|
| default:
|
| @@ -198,6 +199,8 @@ SkColor ColorToGrayscale(SkColor color) {
|
| return NSSystemColorToSkColor([NSColor disabledControlTextColor]);
|
| case kColorId_ButtonHoverColor:
|
| return NSSystemColorToSkColor([NSColor selectedControlTextColor]);
|
| + case kColorId_LabelTextSelectionColor:
|
| + return NSSystemColorToSkColor([NSColor selectedTextColor]);
|
|
|
| // Link.
|
| case kColorId_LinkDisabled:
|
|
|