| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/native_theme/native_theme_dark_aura.h" | 5 #include "ui/native_theme/native_theme_dark_aura.h" |
| 6 | 6 |
| 7 #include "ui/gfx/color_palette.h" | 7 #include "ui/gfx/color_palette.h" |
| 8 | 8 |
| 9 namespace ui { | 9 namespace ui { |
| 10 | 10 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 case kColorId_TextfieldReadOnlyColor: | 123 case kColorId_TextfieldReadOnlyColor: |
| 124 case kColorId_TextfieldReadOnlyBackground: | 124 case kColorId_TextfieldReadOnlyBackground: |
| 125 case kColorId_TooltipBackground: | 125 case kColorId_TooltipBackground: |
| 126 case kColorId_TooltipText: | 126 case kColorId_TooltipText: |
| 127 case kColorId_TreeBackground: | 127 case kColorId_TreeBackground: |
| 128 case kColorId_TreeText: | 128 case kColorId_TreeText: |
| 129 case kColorId_TreeSelectedText: | 129 case kColorId_TreeSelectedText: |
| 130 case kColorId_TreeSelectedTextUnfocused: | 130 case kColorId_TreeSelectedTextUnfocused: |
| 131 case kColorId_TreeSelectionBackgroundFocused: | 131 case kColorId_TreeSelectionBackgroundFocused: |
| 132 case kColorId_TreeSelectionBackgroundUnfocused: | 132 case kColorId_TreeSelectionBackgroundUnfocused: |
| 133 case kColorId_TreeArrow: | |
| 134 case kColorId_TableBackground: | 133 case kColorId_TableBackground: |
| 135 case kColorId_TableText: | 134 case kColorId_TableText: |
| 136 case kColorId_TableSelectedText: | 135 case kColorId_TableSelectedText: |
| 137 case kColorId_TableSelectedTextUnfocused: | 136 case kColorId_TableSelectedTextUnfocused: |
| 138 case kColorId_TableSelectionBackgroundFocused: | 137 case kColorId_TableSelectionBackgroundFocused: |
| 139 case kColorId_TableSelectionBackgroundUnfocused: | 138 case kColorId_TableSelectionBackgroundUnfocused: |
| 140 case kColorId_TableGroupingIndicatorColor: | 139 case kColorId_TableGroupingIndicatorColor: |
| 141 case kColorId_TableHeaderText: | 140 case kColorId_TableHeaderText: |
| 142 case kColorId_TableHeaderBackground: | 141 case kColorId_TableHeaderBackground: |
| 143 case kColorId_TableHeaderSeparator: | 142 case kColorId_TableHeaderSeparator: |
| (...skipping 13 matching lines...) Expand all Loading... |
| 157 | 156 |
| 158 NOTREACHED(); | 157 NOTREACHED(); |
| 159 return gfx::kPlaceholderColor; | 158 return gfx::kPlaceholderColor; |
| 160 } | 159 } |
| 161 | 160 |
| 162 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} | 161 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} |
| 163 | 162 |
| 164 NativeThemeDarkAura::~NativeThemeDarkAura() {} | 163 NativeThemeDarkAura::~NativeThemeDarkAura() {} |
| 165 | 164 |
| 166 } // namespace ui | 165 } // namespace ui |
| OLD | NEW |