Index: ui/native_theme/common_theme.cc |
diff --git a/ui/native_theme/common_theme.cc b/ui/native_theme/common_theme.cc |
index f41e775465dbfc9d7f239159fa9444e5d0ba03b8..287d1a74d61d35ce73e2b0c2a2c4e42c89d18695 100644 |
--- a/ui/native_theme/common_theme.cc |
+++ b/ui/native_theme/common_theme.cc |
@@ -261,6 +261,17 @@ SkColor GetAuraColor(NativeTheme::ColorId color_id, |
case NativeTheme::kColorId_TableGroupingIndicatorColor: |
return kTableGroupingIndicatorColor; |
+ // Table Header |
+ case NativeTheme::kColorId_TableHeaderText: |
+ return base_theme->GetSystemColor( |
+ NativeTheme::kColorId_EnabledMenuItemForegroundColor); |
+ case NativeTheme::kColorId_TableHeaderBackground: |
+ return base_theme->GetSystemColor( |
+ NativeTheme::kColorId_MenuBackgroundColor); |
+ case NativeTheme::kColorId_TableHeaderSeparator: |
+ return base_theme->GetSystemColor( |
+ NativeTheme::kColorId_EnabledMenuButtonBorderColor); |
+ |
// FocusableBorder |
case NativeTheme::kColorId_FocusedBorderColor: |
return gfx::kGoogleBlue500; |