| Index: ui/views/style/typography_provider.cc
|
| diff --git a/ui/views/style/typography_provider.cc b/ui/views/style/typography_provider.cc
|
| index 11bce4e92bc6465d84020f90d904fa30116c4e60..10a2ea56209256c920dd2183c5e5a3e18f85a120 100644
|
| --- a/ui/views/style/typography_provider.cc
|
| +++ b/ui/views/style/typography_provider.cc
|
| @@ -52,6 +52,13 @@ SkColor DefaultTypographyProvider::GetColor(
|
| int context,
|
| int style,
|
| const ui::NativeTheme& theme) const {
|
| + if (context == style::CONTEXT_TEXTFIELD) {
|
| + return theme.GetSystemColor(
|
| + style == style::STYLE_DISABLED
|
| + ? ui::NativeTheme::kColorId_TextfieldReadOnlyColor
|
| + : ui::NativeTheme::kColorId_TextfieldDefaultColor);
|
| + }
|
| +
|
| return theme.GetSystemColor(
|
| (style == style::STYLE_DISABLED)
|
| ? ui::NativeTheme::kColorId_LabelDisabledColor
|
|
|